function InsertFlashMovie(f_width,f_height,f_bgcolor,f_file)
{
		
  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('<EMBED src="'+f_file+'" menu="false" ');
	if (f_bgcolor>''&& !f_bgcolor=='transparent')
  	document.write('bgcolor="'+f_bgcolor+'" ');
	if (f_bgcolor=='transparent')
		document.write('wmode="transparent" ');
	document.write('swLiveConnect="true" quality="best" AllowScriptAccess="always" scale="exactfit" salign="lt" width="'+f_width+'" height="'+f_height+'" name="myFlash" align="middle" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>\n');*/
  document.write('</OBJECT>\n');
  
}