<!--
	function openPopupWindow(URLtoOpen) {
		bName = navigator.appName;
		bVer = parseInt(navigator.appVersion);
		if((bName == "Netscape" && bVer >= 3) || (bName == "Microsoft Internet Explorer" && bVer >= 4))
			br = "n3";
		else
			br = "n2";
		
		if(br == "n3") {
			newWindow=window.open(URLtoOpen, 'lilone','toolbar=yes,width=400,height=350,left=500,top=300,directories=0,status=0,scrollbars=1,resizable=yes,menubar=0,location=0,copyhistory=0');
		}
	}
	
	/**
	*
	* Closes any existing popups before opening a new one
	* Any new windows will always have focus and you won't "loose" any existing windows
	*
	* Takes url for content and height and width for size of new window
	*/ 
	function popup( URL, width, height )
	{
		try
		{
			popup_window.close();
		}
		catch(e)
		{
					
		}
		
		popup_window=window.open( URL,"_popover","status=no,location=no,menubar=no,toolbar=no,directories=no,resizable=no,scrollbars=yes,width=" + width + ",height=" + height + ",screenX=100,screenY=100");	
		window.onerror = null;
	}
//-->
