function flashWrite(width,height,flashUrl){
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
document.write('codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=7,0,0,0" ');
document.write('width="' + width + '" height="' + height + '">');
document.write('<param name="movie" value="' + flashUrl + '">');
document.write('<param name="quality" value="high">');
document.write('<param name="wmode" value="transparent">');
document.write('<param name="menu" value="false">');
document.write('<embed src="' + flashUrl + '" quality="high" width="' + width + '" height="' + height + '" ');
document.write('type="application/x-shockwave-flash" wmode="transparent" menu="false" ');
document.write('pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">');
document.write('</embed><noembed></noembed> ');
document.write('</object>');
}