function openHelpWindow(path)
{
    if (navigator.appName.indexOf("WebTV") == -1)
    {
        hw = window.open(path, "helpwin", "height=480,width=430,status=no,toolbar=no,scrollbars=yes,menubar=no,location=no,resizable=yes,titlebar=no");
        hw.focus();
        return false;
    }
    else
    {
        document.location.href = path;
    }
}