function Logout(){
	return confirm("Are you sure you wish to exit Home Access Center?");
}
function ShowHelp() {
	var strHelpPage = "";
	var expContent = /\Content\//i;
	var expASP = /\.asp.*/i;

	if (document.getElementById("HelpFile")) {
		if (document.getElementById("HelpFile").value) {
			strHelpPage = document.getElementById("HelpFile").value;
			// Strip any leading slashes off the help file name.
			while ((strHelpPage.substr (0, 1) == "/") && (strHelpPage != ""))
				strHelpPage = strHelpPage.substr (1);
		}
	} else {
		strHelpPage = window.location.pathname;
		//Strip out the application name
		strHelpPage = strHelpPage.substring(1,strHelpPage.length);
		strHelpPage = strHelpPage.substring(strHelpPage.indexOf("/") + 1,strHelpPage.length);
		
		//replace the file extension with htm
		strHelpPage = strHelpPage.replace (expASP, ".htm");
	}
	
	FMCOpenHelp (strHelpPage, "Main", null, null);
	
	return false;
}