function InsertFlashMovie(f_width,f_height,f_bgcolor,f_file)
{
document.write('<div style="text-align:left;" />\n');
document.write('<OBJECT data="'+f_file+'" type="application/x-shockwave-flash" width="'+f_width+'" height="'+f_height+'" id="myFlash" align="middle">\n');
document.write('<PARAM NAME="movie" VALUE="'+f_file+'"/>\n');
document.write('<PARAM NAME="menu" VALUE="false"/>\n');
document.write('<PARAM NAME="salign" VALUE="lt" />\n');
document.write('<PARAM NAME="scale" VALUE="exactfit" />\n');
document.write('<PARAM NAME="quality" VALUE="best"/>\n');
document.write('<PARAM NAME="AllowScriptAccess" value="always" />\n');
document.write('<PARAM NAME="salign" VALUE="lt" />\n');
document.write('<PARAM NAME="align" VALUE="middle"/>\n');
if (f_bgcolor=='transparent')
document.write('<PARAM NAME="wmode" VALUE="transparent" />\n');
if (f_bgcolor>''&& !f_bgcolor=='transparent')
document.write('<PARAM NAME="bgcolor" VALUE="'+f_bgcolor+'"/>\n');

document.write('</OBJECT>\n');
document.write('<div>\n');

}
