<!-- //
var winPopUps
function closeAll()
	{
	if(winPopUps && winPopUps.open && !winPopUps.closed) 
		{
		winPopUps.close() 
		}
	}
	
	
// popup  windows	
function openWinPopUpsMap(theURL,winName,features,thePage)
	{
	   
   	var winPopUps = window.open(theURL,winName,features,thePage);

	var content = "<html><head><title>Need a Childminder - Love and care for all to Share: Learning Fountain</title></head>";
		content += "<frameset rows='54,*'>";
			content +="<frame name='topbar' src='top-bar2.asp' marginwidth='0' marginheight='0' scrolling='no' frameborder='0' noresize>";
			content += "<frame width='425' height='350' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=11+Beaconsfield+Rd,+Canning+Town,+London+E16+4HS,+UK&amp;sll=51.521467,0.01158&amp;sspn=0.009293,0.019205&amp;ie=UTF8&amp;ll=51.530693,0.015965&amp;spn=0.009292,0.019205&amp;z=14&amp;iwloc=A&amp;output=embed'></frame><br /><small><a href='http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=11+Beaconsfield+Rd,+Canning+Town,+London+E16+4HS,+UK&amp;sll=51.521467,0.01158&amp;sspn=0.009293,0.019205&amp;ie=UTF8&amp;ll=51.530693,0.015965&amp;spn=0.009292,0.019205&amp;z=14&amp;iwloc=A' style='color:#0000FF;text-align:left'>View Larger Map</a></small>"





		
			
			//content += "<frame name='website' src='"+ thePage +"' marginwidth='0' marginheight='0' scrolling='auto' frameborder='0' style='margin-left: auto; margin-right: auto;'>";
		content += "</frameset>";
	content += "</html>";

	winPopUps.document.write(content);
	winPopUps.document.close();//important to do this
	winPopUps.focus();
	}

window.onunload= closeAll;
// -->



