function showHelpWnd(strTopic, strPath) {
	if (typeof(strTopic) == "undefined") strTopic = "";
	if (typeof(strPath) == "undefined") strPath = "../";
	
	strUrl = strPath + "help/?maximize=yes&topic=" + strTopic;
	var nScrWidth = window.screen.avialWidth - 10;
	var nScrHeight = window.screen.avialHeight - 40;

	strFeatures = "left=0,top=0,status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes,width=" + (nScrWidth) + ",height=" + (nScrHeight);

	var hHelpWnd = top.open(strUrl, "TOD_HELP", strFeatures);
	try {
		hHelpWnd.focus();
	}
	catch (e) {}
}
