function embedFlash(fn, w, h) {
   document.write("<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='"+w+"' height='"+h+"'>");
   document.write("<param name='movie' value='"+fn+"'>");
   document.write("<param name='quality' value='high'>");
   document.write('<param name="wmode" value="transparent">');
   document.write("<embed src='"+fn+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+w+"' height='"+h+"'></embed></object>");
}

function embedMovie(fn, w, h) {
document.write("<OBJECT ID='vod' name='vod' WIDTH="+w+" HEIGHT="+h+" CLASSID='CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95' codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,05,0809' Standby='Loading Microsoft Windows Media Player components...' type='application/x-oleobject' VIEWASTEXT>");
document.write("<param name='transparentAtStart' VALUE='1'>");
document.write("<param name='transparentAtStop' VALUE='0'>");
document.write("<param name='AnimationAtStart' VALUE='1'>");
document.write("<param name='AutoStart' VALUE='1'>");
document.write("<param name='AutoRewind' VALUE='1'>");
document.write("<param name='SendMouseClickEvents' VALUE='1'>");
document.write("<param name='DisplaySize' VALUE='0'>");
document.write("<param name='AutoSize' VALUE='0'>");
document.write("<param name='ShowDisplay' VALUE='0'>");
document.write("<param name='ShowStatusBar' VALUE='0'>");
document.write("<param name='ShowControls' VALUE='0'>");
document.write("<param name='ShowTracker' VALUE='0'>");
document.write("<param name='Enabled' VALUE='1'>");
document.write("<param name='EnableContextMenu' VALUE='0'>");
document.write("<param name='EnablePositionControls' VALUE='1'>");
document.write("<param name='EnableFullScreenControls' VALUE='1'>");
document.write("<param name='ShowPositionControls' VALUE='0'>");
document.write("<param name='Mute' VALUE='0'>");
document.write("<param name='Rate' VALUE='1'>");
document.write("<param name='ClickToPlay' VALUE='0'>");
document.write("<param name='CursorType' value='1'>");
document.write("<param name='FileName' value='"+fn+"'>");
document.write("</OBJECT>");
}
    
