
var isNav4 = (navigator.appName == "Netscape" &&
parseInt(navigator.appVersion) == 4);

if(parent == window) {
// do nothing if netscape is printing
if(!isNav4 || (isNav4 && window.innerWidth != 0)) {
if(location.replace) {
// replace() keeps page out of history
location.replace("../index.php?reload=1&page=" + location.pathname);
} else {
location.href = "../index.php?reload=1&page=" + location.pathname;
}
}
}
