
/*
	javascript function writes in a windows media player.  Takes 4 parameters, the url of the video to be player, autoplay (true to start right away), the desired width and the desired height
*/
function embedWMFile(videoURL,autoplay,width,height){
	if(autoplay == null){
			autoplay = true;
	}
	var WMP7;
	
	if(window.ActiveXObject)
	{
	    WMP7 = new ActiveXObject("WMPlayer.OCX.7");
	}
	else if (window.GeckoActiveXObject)
	{
		try{
	     WMP7 = new GeckoActiveXObject("WMPlayer.OCX.7");
	  }catch(E){}
	}
	
	// Windows Media Player 7 Code
	if ( WMP7 )
	{
	     document.write ('<OBJECT ID=MediaPlayer ');
	     document.write (' CLASSID=CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6');
	     document.write (' standby="Loading Microsoft Windows Media Player components..."');
	     document.write (' TYPE="application/x-oleobject" width="'+width+'" height="'+height+'">');
	     document.write ('<PARAM NAME="url" VALUE="'+videoURL+'">');
	     document.write ('<PARAM NAME="AutoStart" VALUE="'+autoplay+'">');
	     document.write ('<PARAM NAME="ShowControls" VALUE="1">');
	     document.write ('<PARAM NAME="uiMode" VALUE="FULL">');
	     document.write ('<PARAM NAME="EnableFullScreenControls" VALUE="true"> ');
	     document.write ('</OBJECT>');
	}
	
	// Windows Media Player 6.4 Code
	else
	{
	     //IE Code
	     document.write ('<OBJECT ID=MediaPlayer ');
	     document.write ('CLASSID=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95 ');
	     document.write ('CODEBASE=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715 ');
	     document.write ('standby="Loading Microsoft Windows Media Player components..." ');
	     document.write ('TYPE="application/x-oleobject" width="'+width+'" height="'+height+'">');
	     document.write ('<PARAM NAME="src" VALUE="'+videoURL+'">');
	     document.write ('<PARAM NAME="filename" VALUE="'+videoURL+'">');
	     document.write ('<PARAM NAME="AutoStart" VALUE="'+autoplay+'">');
	     document.write ('<PARAM NAME="ShowControls" VALUE="1">');
			 document.write ('<PARAM NAME="EnableFullScreenControls" VALUE="true"> ');
			 
	     //Netscape code
	     document.write ('    <Embed type="application/x-mplayer2"');
	     document.write ('        pluginspage="http://www.microsoft.com/windows/windowsmedia/"');
	     document.write ('        filename="'+videoURL+'"');
	     document.write ('        src="'+videoURL+'"');
	      document.write ('       AutoStart="'+autoplay+'"');
	     document.write ('        Name=MediaPlayer');
	     document.write ('        ShowControls=1');
	     document.write ('        ShowDisplay=1');
	     document.write ('        ShowStatusBar=1');
	     document.write ('        EnableFullScreenControls=1');
	     document.write ('        width='+width);
	     document.write ('        height='+height+'>');
	     document.write ('    </embed>');
	     document.write ('</OBJECT>');
	}
}