<!-- //
var winPopUps
function closeAll()
	{
	if(winPopUps && winPopUps.open && !winPopUps.closed) 
		{
		winPopUps.close() 
		}
	}
	
	
// popup  windows	
function openWinPopUps2(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 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;
// -->