// JavaScript Document
   NS4 = document.layers;
   if (NS4){
      origWidth = innerWidth;
      origHeight = innerHeight;
  }else{
	  origWidth = window.clientWidth;
      origHeight = window.clientHeight;
  
  }

function reDo() {

if (NS4){
   if (innerWidth != origWidth || innerHeight != origHeight) 
      location.reload();

}else{

      location.reload();

}
}
onresize = reDo;