<!--
	function cfMovie() {
		document.write("<OBJECT ID=WMPlayer Name=WMPlayer classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' codebase=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701 standby='Loading Microsoft Windows Media Player components...' type='application/x-oleobject' bgcolor='#FF0000' width='216' height='162'>");
		document.write("<PARAM NAME='Filename' value='" + fileMovie + "'>");
		document.write("<PARAM NAME='AutoStart' VALUE='1'>");
		document.write("<PARAM NAME='AnimationAtStart' VALUE='1'> 			");
		document.write("<PARAM NAME='ShowPositionControls' VALUE='0'> ");
		document.write("<PARAM NAME='ShowControls' VALUE='0'>  ");
		document.write("<PARAM NAME='ShowDisplay' VALUE='0'> ");
		document.write("<PARAM NAME='ShowStatusBar' VALUE='0'>  ");
		document.write("<PARAM NAME='TransparentAtStart' VALUE='1'> ");
		document.write("<EMBED type='application/x-mplayer2' pluginspage='http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/' ;id='WMPlayer' Name='WMPlayer' AutoStart = '1' AnimationAtStart = '0' ShowPositionControls='0' ShowControls='0' ShowDisplay='0' ShowStatusBar='0' TransparentAtStart = '1' width='325'  height='245' ")
		document.write("src='" + fileMovie + "'>");
		document.write("</EMBED> ");
		document.write("</OBJECT>");
	}

	 var curspeed	= 200;
	 var nowmin		= 0;
	 var firstload	= false;
					 
	 function Play()  {
		document.WMPlayer.CurrentPosition	= 0;
		document.WMPlayer.FileName			=  fileMovie;
	 }
	 
	 function Play1(fileName)  {
		document.WMPlayer.CurrentPosition	= 0;
		document.WMPlayer.FileName			=  fileName;
	 }
	 
	 
	 
	 function Stop()  { 
		document.WMPlayer.Stop();
		if ( navigator.appName == "Netscape" )   {
			 document.WMPlayer.SetCurrentPosition(0);
			 document.write("1");
		}
		else{
			 document.WMPlayer.CurrentPosition = 0;
		}  
	 }
//-->

