// JavaScript Document
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// 处理 Flash 影片中的所有 FSCommand 消息
function menu_DoFSCommand(command, args)
{
	var menuObj = isInternetExplorer ? document.all.menu : document.menu;
	//
	// 代码放在此处。
	if(command=="submenu")
	{
		if(args==1)
		{
			document.getElementById('submenu').style.display='block';
		}
		else if(args==0)
		{
			document.getElementById('submenu').style.display='none';
		}
	}
	//
}
// Internet Explorer 的挂钩
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<scrip');
	document.write('t language=\"VBScript\"\>\n');
	document.write('On Error Resume Next\n');
	document.write('Sub menu_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call menu_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</scrip');
	document.write('t\>\n');
}