<!--
   function open_win(address)
   {
      var config = "toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,copyhistory=0";
      OpenWin = open(address,"",config);
   }
	
   function open_plugin_win(address,width,height)
   {
      var config = "toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,copyhistory=0";
		var n=navigator.appName;
		var ns=(n=="Netscape")
		var ie=(n=="Microsoft Internet Explorer")
		var LeftPosition, TopPosition;
		if (ns || ie)
		{
			Height = screen.height - height;
         Width  = screen.width  - width;
			LeftPosition = (screen.width  - Width)/2;
			TopPosition  = (screen.height - Height)/2 - 25;
			config = config + ",height="+Height+",width="+Width;
		}
		if (ns)
			config = config + ",screenX="+LeftPosition+",screenY="+TopPosition;
		else if (ie)
			config = config + ",top="+TopPosition+",left="+LeftPosition;
		OpenWin = this.open(address,"plugin",config);
	}
<!-- end -->
