// docwrite.js
/* To create Web pages that load interactive controls (swf) that respond immediately to user input, use Microsoft JScript to load controls
from external script files. You cannot write script elements inline with the main HTML page to load your control externally. If the script
is written inline programmatically, for example with the writeln function, the loaded control will behave as if it was loaded by the HTML
document itself and will require activation. To ensure a control is interactive when it is loaded, use one of the following techniques to
load your control from an external file. The following example uses document.write to load a control dynamically.*/

document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0" ID=web 2 WIDTH=800 HEIGHT=600>');
document.write('<PARAM NAME=movie VALUE="web%203.swf">');
document.write('<PARAM NAME=align VALUE=default>');
document.write('<PARAM NAME=quality VALUE=AutoHigh>');
document.write('<EMBED src= "web%203.swf" quality=AutoHigh  align=default  WIDTH=800 HEIGHT=600 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" name="web"></EMBED>');
document.write('<param name="autoStart" value="-1"></object>');