/**
* resize.js 0.3 970811
* by gary smith
* js component for "reloading page onResize"
*/
window.saveInnerWidth = window.innerWidth;
window.saveInnerHeight = window.innerHeight;
//modifications done in this function:
//onresize-handler is buggy in NS-version lower than 4.51
function resize() {
var actNsVers = parseFloat(navigator.appVersion);
if (document.layers && actNsVers >= 4.5){
location.reload();
}else if (document.all){
location.reload();
}
}