
var last_xmlFileName = "";
var curr_xmlFileName = "";
	function FS_Command(argument) {
		//alert("Link to open:" + argument);
		//TODO: add open code for the page
		window.parent.openPage(argument);
	}
	function onLogout() {
		//alert("logout");
		//TODO: code for logout action
		window.parent.openPage("Public/Logoff.aspx");
	}
	function loadMenu(xmlFileName){
		
		curr_xmlFileName = xmlFileName;
		if ((last_xmlFileName != xmlFileName) && (xmlFileName))
		{
			window.setTimeout("document.Flash_menu.setVariable('xmlFileName', curr_xmlFileName);",800);
			//document.Flash_menu.setVariable("xmlFileName", xmlFileName);
			last_xmlFileName = xmlFileName;
		}
	}
