//NS resize fix
	function BHG_reloadPage(init)
	 {
		if (init==true) with (navigator) 
		{
			if ((appName=="Netscape")&&(parseInt(appVersion)==4)) 
			{
		    	document.BHG_pgW=innerWidth; 
				document.BHG_pgH=innerHeight; 
				onresize=BHG_reloadPage; 
			}
		}
		else if (innerWidth!=document.BHG_pgW || innerHeight!=document.BHG_pgH)
		{
			location.reload();
		}
		BHG_reloadPage(true);
		
		//stop flickering
		window.offscreenBuffering = "true";
	}

	
// this var gives a reference to the new window and opens it
var NewWindow;
function BHG_openBrWindow(theURL,winName) 
{
	NewWindow = window.open(theURL,winName,"width=450,height=450,left=10,top=10,resizable=no,scrollbars=no");
	NewWindow.focus();
}