// refresh an ns browser upon resizing so menubar remains
// older versions of ns will put the refresh into a loop unless
// we check that an actual resize occurred

function refreshOnResize() {

//	window.onresize=refresh;

//alert ('test');
  if(document.layers){origWidth=innerWidth;origHeight=innerHeight;onresize=function(){if(innerWidth!=origWidth||innerHeight!=origHeight)location.reload()}}

//window.onload = loadPage;
}

//function loadPage() {
//	setTimeout("window.onresize=refresh", 1000);
//}

