﻿function WriteFlashToPage(src, width, height) {
    document.write('<OBJECT codeBase="http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0,0" height="' + height + '" width="' + width + '" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" VIEWASTEXT>\n');
    document.write('<PARAM NAME="_cx" VALUE="5080">\n');
    document.write('<PARAM NAME="_cy" VALUE="5080">\n');
    document.write('<PARAM NAME="FlashVars" VALUE="">\n');
    document.write('<PARAM NAME="Movie" VALUE="' + src + '">\n');
    document.write('<PARAM NAME="Src" VALUE="' + src + '">\n');
    document.write('<PARAM NAME="WMode" VALUE="Transparent">\n');
    document.write('<PARAM NAME="Play" VALUE="-1">\n');
    document.write('<PARAM NAME="Loop" VALUE="-1">\n');
    document.write('<PARAM NAME="Quality" VALUE="High">\n');
    document.write('<PARAM NAME="SAlign" VALUE="">\n');
    document.write('<PARAM NAME="Menu" VALUE="-1">\n');
    document.write('<PARAM NAME="Base" VALUE="">\n');
    document.write('<PARAM NAME="AllowScriptAccess" VALUE="">\n');
    document.write('<PARAM NAME="Scale" VALUE="ShowAll">\n');
    document.write('<PARAM NAME="DeviceFont" VALUE="0">\n');
    document.write('<PARAM NAME="EmbedMovie" VALUE="0">\n');
    document.write('<PARAM NAME="BGColor" VALUE="">\n');
    document.write('<PARAM NAME="SWRemote" VALUE="">\n');
    document.write('<PARAM NAME="MovieData" VALUE="">\n');
    document.write('<PARAM NAME="SeamlessTabbing" VALUE="1">\n');
    document.write('<PARAM NAME="Profile" VALUE="0">\n');
    document.write('<PARAM NAME="ProfileAddress" VALUE="">\n');
    document.write('<PARAM NAME="ProfilePort" VALUE="0">\n');
    document.write('<PARAM NAME="swLiveConnect" VALUE="false">\n');
    document.write('<PARAM NAME="AllowScriptAccess" VALUE="always">\n');
    document.write('<EMBED SRC="' + src + '" WIDTH="' + width + '" HEIGHT="' + height + '" PLAY="true" LOOP="true" WMODE="transparent" QUALITY="high" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">\n');

    document.write('</EMBED>\n');
    document.write('</OBJECT>\n');
}

