NSOrigWidth  = window.innerWidth;
NSOrigHeight = window.innerHeight;
ns4=(document.layers)?true:false;
if (ns4){
window.onresize = resize;
}

function resize(){
    if (window.innerWidth == NSOrigWidth && window.innerHeight == NSOrigHeight) return;
    window.location.reload();
}
