<!--
function loadWindowsMedia(url,width,height){
	document.write('<object ID="MediaPlayer" width="'+width+'" height="'+height+'" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">');
	document.write('<param name="ShowStatusBar" value="false">');
	document.write('<param name="Volume" value="false">');
	document.write('<param name="ShowDisplay" value="false">');
	document.write('<param name="ShowControls" value="true">');
	document.write('<param name="ShowAudioControls" value="false">');
	document.write('<param name="ShowPositionControls" value="false">');
	document.write('<param name="AutoStart" value="true">');
	document.write('<param name="FileName" value="'+url+'">');
	document.write('<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/"');
	document.write('Name=MediaPlayer');
	document.write('ShowControls=1');
	document.write('ShowDisplay=0');
	document.write('ShowStatusBar=0');
	document.write('width='+width);
	document.write('height='+height);
	document.write('AutoStart=1');
	document.write('DisplaySize=0');
	document.write('ShowPositionControls=0');
	document.write('ShowVolumeControls=0');
	document.write('Src="'+url+'"');
	document.write('</embed>');
	document.write('</object');
}
//-->
