try {
  document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}

var printObjectPlayer = function(url)
{
 document.write('<OBJECT id="MediaPlayer" type="application/x-oleobject" height="400" width="370" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95">');
 document.write('<PARAM NAME="FileName" VALUE="'+url+'">');
 document.write('<PARAM NAME="AutoStart" VALUE="true">');
 document.write('<PARAM NAME="ShowControls" VALUE="true">');
 document.write('<PARAM NAME="ShowDisplay" VALUE="false">');
 document.write('<PARAM NAME="ShowStatusBar" VALUE="true">');
 document.write('<PARAM NAME="AutoSize" VALUE="true">');
 document.write('<embed type="application/x-mplayer2" name="MediaPlayer" ');
 document.write(' pluginspage="http://www.microsoft.com/windows/windowsmedia/download/" ');
 document.write(' src="'+url+'"');
 document.write(' width="400" ');
 document.write(' height="370" ');
 document.write(' autostart="true"'); 
 document.write(' autosize="true" ');
 document.write(' showcontrols="1" ');
 document.write(' showdisplay="0" ');
 document.write(' showstatusbar="1">');
 document.write(' </embed>');
 document.write(' </OBJECT>');
} 

