﻿
function WriteFlash(Flash_Width,Flash_Height,path)
{
var Txt_Height = 0;
var Swf_Height = parseInt(Flash_Height + Txt_Height);
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ Flash_Width +'" height="'+ Swf_Height +'">');
document.write('<param name="allowScriptAccess" value="sameDomain"><param name="movie" value='+path+'><param name="quality" value="high"><param name="bgcolor" value="#FFFFFF">');
document.write('<param name="menu" value="false"><param name="wmode" value="transparent">');
document.write('<param name="FlashVars" value="borderwidth='+Flash_Width+'&borderheight='+Flash_Height+'&textheight='+Txt_Height+'">');
document.write('<embed src='+path+' wmode="opaque" FlashVars="borderwidth='+Flash_Width+'&borderheight='+Flash_Height+'&textheight='+Txt_Height+'" menu="false" bgcolor="#FFFFFF" quality="high" width="'+ Flash_Width +'" height="'+ Swf_Height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
document.write('</object>');
}
