var isNS =  (navigator.appName == "Netscape");

/* Working Around Netscape Resize Bug */
if (isNS){
origWidth = innerWidth;
origHeight = innerHeight;       
}

/* Function: Restoring The Size */        
function restore(){       
if (innerWidth != origWidth || innerHeight != origHeight){
location.reload();
}
}       

/* Function: Restoring The Size */        
if (isNS){
onresize = restore;
}