
function setswf(name, width, height, id_name, bg_color)
{
document.write('<object data="'+name+'" id="'+id_name+'" width="'+width+'" height="'+height+'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" type="application/x-shockwave-flash">');
document.write('<param name="allowScriptAccess" value="sameDomain">');
document.write('<param name="movie" value="'+name+'">');
document.write('<param name="quality" value="best">');
document.write('<param name="bgcolor" value="'+bg_color+'">');
document.write('<param name="menu" value="false">');
document.write('<embed src="'+name+'" width="'+width+'" height="'+height+'" quality="high" bgcolor="#000000" menu="false"align="middle" swLiveConnect="true" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">');
document.write('</object>');
}

