<!--///---------	‹¤’ÊJavaScript	------------///

	function GoJump(parts)
	{
		var Nname="";
			Nname=navigator.appName.indexOf('Netscape');
		var Mname="";
			Mname=navigator.appName.indexOf('Microsoft');
		var Select="";
			Select=parts.options[parts.selectedIndex].value;

		if((Select!="")&&(Nname==0))
		{
			parent.document.open()
			parent.document.write("<HTML><BODY BGCOLOR='#C0C0C0'>Now Loading !<BR></BODY></HTML>")
			parent.location=Select;
			parent.document.close()
		}
		if((Select!="")&&(Mname==0))
		{
			parent.document.open()
			parent.document.write("<HTML><META HTTP-EQUIV='refresh' CONTENT='0;URL="+Select+"'><BODY>Loading !<BR></BODY></HTML><BR>");
			parent.document.close()
		}
	}

	function PopUpWindow(URL,Wname,Wwidth,Wheight)
	{
		window.open(URL,Wname,"width="+Wwidth+",height="+Wheight+",scrollbars=yes,resizable=no,toolbar=no,location=no,directories=no,status=no")
//		window.open(URL,Wname,"width=Wwidth,height=Wheight,scrollbars=yes,resizable=no,toolbar=no,location=no,directories=no,status=no")
	}

	function Fclose()
	{
		window.close();
	}

	function AutoResize(Wwidth,Wheight)
	{
		window.resizeTo(Wwidth,Wheight);
	}

	function AutoMoving(Wleft,Wabove)
	{
		window.moveTo(Wleft,Wabove);
	}

//	-->
