function RunFlash(filename,w,h)
{
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + w + '" height="' + h + '">\n');
    document.write('<param name="movie" value="' + filename + '.swf">\n');
    document.write('<param name="allowScriptAccess" value="sameDomain">\n');
    document.write('<param name="quality" value="high">\n');
    document.write('<embed src="' + filename + '.swf" quality="high" allowScriptAccess="sameDomain" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + w + '" height="' + h + '"></embed>\n');
    document.write('</object><br>\n');
}

function RunVideo(filename,w,h)
{
    document.write('<OBJECT ID="MediaPlayer1" width='+w+' height='+h+' classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,02,902" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">\n');
    document.write('<PARAM NAME="FileName" VALUE="' + filename + '.asx">\n');
    document.write('<PARAM NAME="animationatStart" VALUE="False">\n');
    document.write('<PARAM NAME="transparentatStart" VALUE="false">\n');
    document.write('<PARAM NAME="autoStart" VALUE="true">\n');
    document.write('<Param Name="ShowStatusBar" Value="True">\n');
    document.write('<Param Name="autoSize" Value="false">\n');
    document.write('<PARAM NAME="showControls" VALUE="true">\n');
    document.write('<EMBED type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" SRC="' + filename + '.asx" name="MediaPlayer1" width='+w+' height='+h+' AutoStart=true>\n');
    document.write('</EMBED>\n');
    document.write('</OBJECT><br>\n');
}