function runSwf(swf,width,height,scale,loop)
{
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + width + '" height="' + height + '">');
document.write('<param name="movie" value="' + swf + '">');
document.write('<param name="quality" value="high">');
document.write('<param name="menu" value="false">');

if (scale) { document.write('<param name="scale" value="' + scale + '">'); }
if (loop)  { document.write('<param name="loop" value="' + loop + '">'); }

document.write('<param name="wmode" value="transparant">');
document.write('<embed src="' + swf + '" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '" ' );

if (scale) { document.write(' scale="' + scale + '" '); }
if (loop)  { document.write(' loop="' + loop + '" '); }

document.write('></embed>');
document.write('</object>');
}

