// JavaScript Document
function flash_tag(f_name, f_id, f_width, f_height, wmode) {
        document.write("<OBJECT id='"+f_id+"' codeBase=http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0 height='"+f_height+"' width='"+f_width+"' align=middle classid=clsid:d27cdb6e-ae6d-11cf-96b8-444553540000>");
		document.write("<PARAM NAME='allowScriptAccess' VALUE='always'>");
		document.write("<PARAM NAME='movie' VALUE='"+f_name+"'>");
		document.write("<PARAM NAME='wmode' VALUE='"+wmode+"'>");
		document.write("<PARAM NAME='quality' VALUE='high'>");
		document.write("</OBJECT>");
}