function expand(h, nm){
	var x = document.getElementById(nm);
	x.style.height = Number(h) + "px";
};

var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the FSCommand messages in a Flash movie.
function menu_DoFSCommand(command, args) {
	var menuObj = isInternetExplorer ? document.all.menu : document.menu;
	if (command == "expand") {
		var x = document.getElementById('flashhm');
		x.style.height = Number(args) + "px";
	};
	if (command == "expandMn") {
		var x = document.getElementById('mn');
		x.style.height = Number(args) + "px";
	};
	//
};

// Hook for Internet Explorer.
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<script 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('</script\>\n');
};