function flash(file, width, height)
{
document.write('<object type="application/x-shockwave-flash" data="'+file+'" width="'+width+'" height="'+height+'">\n');
document.write('<param name="movie" value="'+file+'" />\n');
document.write('<param name="quality" value="high" />\n');
document.write('<param name="loop" value="true" />\n');
document.write('<param name="wmode" value="transparent" />\n');
document.write('</object>\n');
}