  
function LoadHelp()
{
	var currentPage = parent.mainFrame.location.href;
	var width = 500;
	var height = 600;
	var left = screen.width - 500;
	var top = screen.height - 600;
	
	// take from last / to only .
	helpPage = currentPage.slice(currentPage.lastIndexOf("/")+1,currentPage.lastIndexOf("."));
	
	newWindow = window.open("help.asp?lang=" + jsLangFile + "&page=" + helpPage,"FSHelp","menubar=1,toolbar=0,scrollbars=0,resizable=0,width="+width+",height="+height+",top="+top+",left="+left);
	newWindow.focus();
}

