function MakeFlash(Url,Width,Height2){
  document.writeln('<object id="MTVPlay" CLASSID=\'CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\' codebase=\'http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,5,0803\'');
	document.writeln('standby=\'Loading Windows Media Player components...\'type=\'application/x-oleobject\' width="'+Width+'" height="'+Height2+'" >');
	document.writeln('<param name="FileName" value="'+ Url +'">');
	document.writeln('<param name="transparentAtStart" value="1">');
	document.writeln('<param name="transparentAtStop" value="1">');
	document.writeln('<param name="AutoRewind" value="True">');
	document.writeln('<param name="AutoStart" value="True">');
	document.writeln('<param name="AutoSize" value="falsee">');
	document.writeln('<param name="AutoResize" value="0">');
	document.writeln('<param name="ShowControls" value="True">');
	document.writeln('<param name="ShowDisplay" value="0">');
	document.writeln('<param name="ShowAudioControls" value="True">');
	document.writeln('<param name="ShowStatusBar" value="True">');
	document.writeln('<param name="EnableContextMenu" value="0">');
	document.writeln('<param name="Volume" value="100">');
	document.writeln('<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/" src="'+ Url +'"  width="'+Width+'" height="'+Height2+'" >');
	document.writeln('</embed>');
	document.writeln('</object>');    
} 
