// JavaScript Document

function flashFix()
{
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="' + swfWidth + '" height="' + swfHeight + '" wmode="' + swfOpacity + '" scale="' + swfScale + '" AllowFullScreen="' + swfScreen + '" align="' + swfAlign + '" id="main">');
document.write('<param name="allowScriptAccess" value="sameDomain" />');
document.write('<param name="movie" value="' + flashSrc + '" />');
document.write('<param name="quality" value="' + swfQuality + '"/>');
document.write('<param name="wmode" value="' + swfOpacity + '"/>');
document.write('<param name="scale" value="' + swfScale + '"/>');
document.write('<param name="allowFullScreen" value="' + swfScreen + '"/>');
document.write('align="' + swfAlign + '"/>');
document.write('<embed  id="main"  src="' + flashSrc + '" quality="' + swfQuality + '" wmode="' + swfOpacity + '" scale="' + swfScale + '" width="' + swfWidth + '" height="' + swfHeight + '" AllowFullScreen="' + swfScreen + '"  name="main" align="' + swfAlign + '" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
document.write('</object>');
document.getElementById("main").focus();
}


