// index.js
function InsertFlash()
{
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0"');
document.write('id="catalog" width="800" height="600">');
document.write('<param name="movie" value="index.swf">');
document.write('<param name="bgcolor" value="#FFFFFF">');
document.write('<param name="quality" value="high">');
document.write('<param name="allowscriptaccess" value="samedomain">');
document.write('<embed type="application/x-shockwave-flash"');
document.write('pluginspage="http://www.macromedia.com/go/getflashplayer"');
document.write('width="800" height="600"');
document.write('name="art_of_programming" src="index.swf"');
document.write('bgcolor="#FFFFFF" quality="high"');
document.write('swLiveConnect="true" allowScriptAccess="samedomain"');
document.write('</embed></object>');
}


