function run_flash(id,url,width,height,WMode,BGColor) 
{ 
document.write('<OBJECT id='+id+' codeBase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0 height='+height+' width='+width+' align=center classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000>\n'); 
document.write('<param name="movie" value="'+url+'">\n'); 
document.write('<PARAM NAME="WMode" VALUE="'+WMode+'"><PARAM NAME="BGColor" VALUE="'+BGColor+'"><PARAM NAME="Play" VALUE="-1"><PARAM NAME="Loop" VALUE="-1"><PARAM NAME="Quality" VALUE="High"><PARAM NAME="AllowScriptAccess" VALUE="always"><PARAM NAME="Scale" VALUE="NoScale">\n');
document.write('<embed NAME="'+id+'" src="'+url+'" width="'+width+'" height="'+height+'" menu="false" Scale="Noscale" quality="high" wmode='+WMode+' type="application/x-shockwave-flash">\n'); 
document.write('</embed>\n'); 
document.write('</object>\n'); 
} 