function MakeFlash(Url,Width,Height){                 
  document.writeln("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"" + Width + "\" height=\"" + Height + "\">"); 
  document.writeln("<param name=\"movie\" value=\"" + Url + "\">"); 
  document.writeln("<param name=\"quality\" value=\"high\" />");     
  document.writeln("<param name=\"wmode\" value=\"transparent\">"); 
  document.writeln("<embed src=\"" + Url + "\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + Width + "\"  height=\"" + Height + "\">"); 
  document.writeln("</object>");     
} 

function MakeMovie(Url,Width,Height){                 
	document.write("<OBJECT ID=\"Player\" codebase=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701 CLASSID='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6' width='" + Width + "' height='" + Height +"'>"); 
	document.write("<PARAM name='autoStart' value='True'>"); 
	document.write("<PARAM name='URL' value='"+Url+" '>"); 
	document.write("<param name='volume' value='100'> "); 
	document.write("<param name='autostart'   value='true' > ")
	document.write("<param name='showcontrols' value='0'> ")
	document.write("<param name='showstatusbar' value='0'> ")
	document.write("<param name='enablecontextmenu' value='false'> ")
	document.write("<param name='transparentatstart' value='true'> ")
	document.write("<param name='transparentonstop' value='true'> ")
	document.write("<param name='EnableContextMenu' value='0'>"); 
	document.write("<param name='ShowControls' value='false'>"); 
	document.write("<embed type='application/x-mplayer2' name='mplay1' width='" + Width + "' height='" + Height + "'></embed>"); 
	document.write("</OBJECT>"); 
} 

