function writePlayer( sMedia, bStart )
{
	var iStart = 0;
	
	if( bStart == true )
		iStart = 1;
		
document.write('<object ID="PlayerObject" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"');
	document.write('CODEBASE= "http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112"');
		document.write('width=320 height=308 standby="Loading Microsoft  Windows Media Player components..." ');
		document.write('type="application /x-oleobject" VIEWASTEXT>');
		document.write('<param NAME="FileName"  VALUE="' + sMedia + '">');
		document.write('<param NAME="AutoStart" Value="' + bStart + '">');
		document.write('<param name="ShowControls" value="true">');
		document.write('<param name="ShowStatusBar" value="true">');
		document.write('<param name="ShowTitle" value="true">');
		document.write('<param name="uiMode" value="none">');
		document.write('<param name="AnimationAtStart" value="false">');
		document.write('<param name="TransparentAtStart" VALUE="false">');
		document.write('<param name="InvokeURLs" value="true">');
		document.write('<param name="AllowScan" value="true">');
		document.write('<param name="AllowSeek" value="true">');
		document.write('<param name="CanScan" value="true">');
		document.write('<param name="CanSeek" value="true">');
		document.write('<param name="EnableTracker" value="true">');
		document.write('<param name="ShowTracker" value="true">');
		document.write('<param name="AutoSize" value="false">');
		document.write('<Embed ');
		document.write('	type="application/x-mplayer2"');
		document.write('	pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"');
		document.write('	src="' + sMedia + '"');
		document.write('	Name=PlayerEmbed');
		document.write('	Width=320');
		document.write('	Height=308');
		document.write('	autostart=' + iStart);
		document.write('	ShowControls=1');
		document.write('	AnimationAtStart=0');
		document.write('	TransparentAtStart=0');
		document.write('	AllowScan=1');
		document.write('	AllowSeek=1');
		document.write('	CanScan=1');
		document.write('	CanSeek=1');
		document.write('	EnableTracker=1');
		document.write('	ShowTracker=1 ');
		document.write('	InvokeURLs = 1');
		document.write('	uiMode=none');
		document.write('	ShowStatusBar=1');
		document.write('	ShowTitle=1');
		document.write('	AutoSize=0');
		document.write('	>');
		document.write('</embed>');
	document.write('</object>');
}

function writeAudioPlayer( sMedia )
{
document.write('<object ID="PlayerObject" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"');
	document.write('CODEBASE= "http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112"');
		document.write('width=320 height=70 standby="Loading Microsoft  Windows Media Player components..." ');
		document.write('type="application /x-oleobject" VIEWASTEXT>');
		document.write('<param NAME="FileName"  VALUE="' + sMedia + '">');
		document.write('<param NAME="AutoStart" Value="true">');
		document.write('<param name="ShowControls" value="true">');
		document.write('<param name="ShowStatusBar" value="true">');
		document.write('<param name="ShowTitle" value="true">');
		document.write('<param name="uiMode" value="none">');
		document.write('<param name="AnimationAtStart" value="false">');
		document.write('<param name="TransparentAtStart" VALUE="true">');
		document.write('<param name="InvokeURLs" value="true">');
		document.write('<param name="AllowScan" value="true">');
		document.write('<param name="AllowSeek" value="true">');
		document.write('<param name="CanScan" value="true">');
		document.write('<param name="CanSeek" value="true">');
		document.write('<param name="EnableTracker" value="true">');
		document.write('<param name="ShowTracker" value="true">');
		document.write('<param name="AutoSize" value="false">');
		document.write('<Embed ');
		document.write('	type="application/x-mplayer2"');
		document.write('	pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"');
		document.write('	src="' + sMedia + '"');
		document.write('	Name=PlayerEmbed');
		document.write('	Width=320');
		document.write('	Height=80');
		document.write('	autostart=1');
		document.write('	ShowControls=1');
		document.write('	AnimationAtStart=0');
		document.write('	TransparentAtStart=1');
		document.write('	AllowScan=1');
		document.write('	AllowSeek=1');
		document.write('	CanScan=1');
		document.write('	CanSeek=1');
		document.write('	EnableTracker=1');
		document.write('	ShowTracker=1 ');
		document.write('	InvokeURLs = 1');
		document.write('	uiMode=none');
		document.write('	ShowStatusBar=1');
		document.write('	ShowTitle=1');
		document.write('	AutoSize=0');
		document.write('	>');
		document.write('</embed>');
	document.write('</object>');
}