function Load(flVersion, flName, flColor, flWidth, flHeight) {
/*var flCodeBase;

if (flVersion == '6')
flCodeBase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0";
else if (flVersion == '7')
flCodeBase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0";
else if (flVersion == '8')
flCodeBase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0";*/


document.writeln("<object type=\"application/x-shockwave-flash\" data="+flName+" width="+flWidth+" height="+flHeight+">");
document.writeln("<param name='movie' value='"+flName+"' /> ");
document.writeln("<param name='quality' value='high' /> ");
document.writeln("<param name=\"wmode\" value=\"transparent\" />");
document.writeln("</object>");
/*
document.writeln('<object ');
document.writeln('classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
document.writeln(' codebase=" ' + flCodeBase);
document.writeln(' ID="flash"');
document.writeln(' width=' + flWidth);
document.writeln(' height=' + flHeight + '>');
document.writeln('<param name=movie value="' + flName + '">');
document.writeln('<param name=wmode value=transparent>');
document.writeln('<param name=quality value=high>');
document.writeln('<param name=bgcolor value=' + flColor + '>');
document.writeln('<embed src="' + flName + '"');
document.writeln(' name="flash"');
document.writeln(' wmode="transparent"');
document.writeln(' quality=high bgcolor=' + flColor);
document.writeln(' width=' + flWidth);
document.writeln(' height=' + flHeight);
document.writeln(' type="application/x-shockwave-flash"');
document.writeln(' pluginspage="http://www.macromedia.com/shockwave/');
document.writeln('download/index.cgi?P1_Prod_Version=ShockwaveFlash">');
document.writeln('</embed></OBJECT>');
*/
}



