// JavaScript Document

function mediaplayer(strFname, nWidth, nHeight) {
	// strFname must include the relative path to the asx file.
	var WMP7;

	if ( navigator.appName != "Netscape" ){
     WMP7 = new ActiveXObject('WMPlayer.OCX');
	}

	// Windows Media Player 7 Code
	if ( WMP7 ){
		document.writeln('<OBJECT ID=MediaPlayer ');
		document.writeln('        CLASSID=CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6 ');
		document.writeln('        standby="Loading Microsoft Windows Media Player components..." ');
		document.write  ('        TYPE="application/x-oleobject" width="' + nWidth + '" ');
		document.writeln('height="' + nHeight + '"> ');
		document.writeln('    <PARAM NAME="url" VALUE="' + strFname + '"> ');
		document.writeln('    <PARAM NAME="AutoStart" VALUE="False"> ');
		document.writeln('    <PARAM NAME="uiMode" VALUE="mini"> ');
     //Netscape code
		document.writeln('    <Embed type="application/x-mplayer2" ');
		document.writeln('        pluginspage="http://www.microsoft.com/windows/windowsmedia/" ');
		document.writeln('        filename="' + strFname + '" ');
		document.writeln('        src="' + strFname + '" ');
		document.writeln('        Name=MediaPlayer ');
		document.writeln('        EnableTracker=1 ');
		document.writeln('        ShowTracker=1 ');
		document.writeln('        ShowDisplay=0 ');
		document.writeln('        AutoStart=0 ');
		document.writeln('        width=' + nWidth);
		document.writeln('        height=' + nHeight + '> ');
		document.writeln('    </embed> ');
		document.writeln('</OBJECT> ');

	} else {
// Windows Media Player 6.4 Code

     //IE Code
   	document.writeln('<OBJECT ID=MediaPlayer ');
		document.writeln('        CLASSID=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95 ');
		document.write  ('        CODEBASE=http://activex.microsoft.com/activex/');
		document.writeln('controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715 ');
		document.writeln('        standby="Loading Microsoft Windows Media Player components..." ');
		document.write  ('	      TYPE="application/x-oleobject" width="' + nWidth + '" ');
		document.writeln('height="' + nHeight + '">');
		document.writeln('    <PARAM NAME="FileName" VALUE="' + strFname + '"> ');
		document.writeln('    <PARAM NAME="AutoStart" VALUE="False"> ');
		document.writeln('    <PARAM NAME="EnableTracker" VALUE="1"> ');
		document.writeln('    <PARAM NAME="ShowTracker" VALUE="0"> ');
		document.writeln('    <PARAM NAME="ShowDisplay" VALUE="0"> ');

     //Netscape code
		document.writeln('	 <Embed type="application/x-mplayer2" ');
		document.writeln('				pluginspage="http://www.microsoft.com/windows/windowsmedia/" ');
		document.writeln('            filename="' + strFname + '" ');
		document.writeln('				src="' + strFname + '" ');
		document.writeln('           	Name=MediaPlayer ');
		document.writeln('           	EnableTracker=1 ');
		document.writeln('           	ShowTracker=1 ');
		document.writeln('           	ShowDisplay=0 ');
		document.writeln('           	AutoStart=0 ');
		document.writeln('           	width=' + nWidth );
		document.writeln('           	height=' + nHeight + '> ');
		document.writeln('    </embed> ');

		document.writeln('</OBJECT> ');
	}
}


