// JavaScript Document
function flashwrite(flashUrl,vWidth,vHeight){
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="" width="'+vWidth+'" height="'+vHeight+'">');
document.write('<param name=movie value="'+flashUrl+'">');
document.write('<param name=quality value=high>');
document.write('<param name=menu value=false>');
document.write('<param name="wmode" value="transparent">');
document.write('<embed src="'+flashUrl+'" quality="high" wmode="transparent"  pluginspage="" type="application/x-shockwave-flash" width="'+vWidth+'" height="'+vHeight+'">');
document.write('</embed>');
document.write('</object>');
}

