	<!--
	
	function OpenWindow(dove, wid, hei)
	{
		var popup = null;

		popup = window.open(dove,'child','dependent=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + wid + ',height=' + hei);
		if (popup != null)
		{
			popup.location = dove;
		    if (navigator.appName.substring(0, 8) == "Netscape")
	      	{
				popup.location = dove;
				popup.opener = self;
		    }
		    if (navigator.appName == "Netscape")
		    {
		    	popup.window.focus();
			}
			self.name = "main";
		}
	}

	// -->

