<!-- 
/* this script solves the netscape resize bug */

function resized(){
  if(pageWidth!=innerWidth || pageHeight!=innerHeight){
    location.reload()
  }
}

if(document.layers){
  pageWidth=innerWidth
  pageHeight=innerHeight
  window.onresize=resized
} 
//-->
