function flashFix(source, width, height) {
document.write('<object type="application/x-shockwave-flash" data="' + source + '" width="' + width + '" height="' + height + '">');
document.write('<param name="movie" value="' + source + '" />');
document.write('<param name="wmode" value="transparent" />');
document.write('<param name="quality" value="high" />');
document.write('<param name="allowscriptaccess" value="always" />');
document.write('<param name="menu" value="false" />');
document.write('</object>');
}