function insertVideo(url,style,autostart)
{
      if(-1 != navigator.userAgent.indexOf("MSIE"))
      {
        document.write('<OBJECT id="player"');
        document.write(' classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6"');
        document.write(' width=100% height=100%>');
      }
      else if(-1 != navigator.userAgent.indexOf("Firefox"))
      {
        document.write('<OBJECT id="player"'); 
        document.write(' type="application/x-ms-wmp"'); 
        document.write(' width=100% height=100%>');
      }   
	document.write('<param name="autostart" value="' + autostart + '">')      
	document.write('<param name="uiMode" value="' + style + '">')      
	document.write('<param name="URL" value = "' + url + '" >')
	document.write('<param name="stretchToFit" value="-1" >')
	document.write('<param name="enableContextMenu" value="0">')
	document.write('<')
	document.write('/OBJECT>')     
}