function fnui_dispSubtitle(subtitle, width)
{
	var str;
	var cw = width-16;
	
	str = "<table border=0 cellpadding=0 cellspacing=0 align=\"center\">";
	str += "<tr height=40>";
	str += "<td width=8 background=\"/images/shape/sub_title_bg1.gif\"></td>";
	str += "<td align=center width="+cw+" background=\"/images/shape/sub_title_bg2.gif\" class=\"subtitle\">"+subtitle+"</td>";
	str += "<td width=8 background=\"/images/shape/sub_title_bg3.gif\"></td>";
	str += "</tr>";
	str += "</table>";
	document.write(str);
}

function noboxflash(f_source, f_width, f_height, f_wmode){

	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + f_width + '" height="' + f_height + '" VIEWASTEXT ID="Object1">');
	document.write('<param name="allowScriptAccess" value="always">');
	document.write('<param name="movie" value="' + f_source + '">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="scale" value="exactfit">');	
	document.write('<param name="wmode" value="' + f_wmode + '">');
	document.write('<param name="menu" value="false">');
	document.write('<embed src="' + f_source + '"manu="false" quality="high" scale="exactfit" pluginspage="http://www.macromedia.com/go/getflashplayer" allowScriptAccess="always" type="application/x-shockwave-flash" width="' + f_width + '" height="' + f_height + '"></embed>');
	document.write('</object>');

}

function fnui_chgIndexMenu(divname, dispflg) {
	for (i=1 ; i<9 ; i++ )
	{
		var obj = document.getElementById("submnu"+i);
		if (divname == i)
		{
			obj.style.display = "inline";
		} else {
			obj.style.display = "none";
		}
	}
}

