// Function to reload page if client browser is Netscape Navigator 4 and has
// been resized (workaround for NN4 resize issue).
function reloadPageForNN4(init) {
    if (init==true) with (navigator) {
        if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
            document.originalWidth=innerWidth;
            document.originalHeight=innerHeight;
            onresize=reloadPageForNN4;
        }
    }
    else if (innerWidth!=document.originalWidth || innerHeight!=document.originalHeight) location.reload();
}

// Call reload function to initially store page dimensions in case of Netscape
// Navigator 4 resize.
reloadPageForNN4(true);
