
function openHelpWindow(path)
{
	if (navigator.appName.indexOf("WebTV")==-1) {
		var hw = window.open(path,"helpwin","width=495,height=550,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no,resizable=yes,titlebar=no");
		if ((navigator.userAgent.toLowerCase().indexOf("msie") == -1) ||
			(parseInt(navigator.appVersion) >= 5)) {
			hw.focus();
		}
		return false;
	}
	document.location.href=path;
	return true;
}
