
function InsertFlash(FlashIDName, FlashFileName, FlashWidth, FlashHeight, DNSSetting, WMODESetting, FlashBGColor, QSetting, FlashAlign)
{
	document.write('<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write('CODEBASE="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab#version=8,0,22,0" ');
	document.write(' ID="'+FlashIDName+'" WIDTH="' + FlashWidth + '" HEIGHT="' + FlashHeight + '" ALIGN="'+FlashAlign+'">');
	document.write('<PARAM NAME="movie" VALUE="'+ FlashFileName +'" />');
	document.write('<PARAM NAME="quality" VALUE="'+QSetting+'" />');
	document.write('<PARAM NAME="bgcolor" VALUE="'+FlashBGColor+'" />');
	document.write('<PARAM NAME="wmode" VALUE="'+WMODESetting+'" />');
	document.write('<PARAM NAME="allowScriptAccess" VALUE="'+DNSSetting+'" />');
	document.write('<param name="allowNetworking" value="all" />');
	document.write('<EMBED SRC="'+ FlashFileName +'"  NAME="'+FlashIDName+'"');
	document.write(' WIDTH="' + FlashWidth + '" HEIGHT="' + FlashHeight + '" QUALITY="'+QSetting+'" BGCOLOR="'+FlashBGColor+'"');
	document.write(' ALLOWSCRIPTACCESS="'+DNSSetting+'" ALIGN="'+FlashAlign+'" WMODE="'+WMODESetting+'" TYPE="application/x-shockwave-flash" ');
	document.write(' PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" >');
	document.write('</EMBED>');
	document.write('</OBJECT>');
}

/* main flash insert */
function topmenu_open(chk) {
	var flash_over = document.getElementById("top_flash");
	if (flash_over)
	{
		if (chk == "over")
		{
			flash_over.style.zIndex = "11";
			flash_over.style.height = "225px";
			flash_over.style.overflow = "";
		}
		else if (chk == "out")
		{
			flash_over.style.zIndex = "7";
			flash_over.style.height = "107px";
			flash_over.style.overflow = "hidden";
		}
	}
}