
if (document.layers) {
   origWidth=innerWidth;
   origHeight=innerHeight;
   }

Function reloadPage() {
   if (innerWidth!=origWidth ||
     innerHeight!=origHeight)
   location.reload();
   }

if (document.layers) onresize=reloadPage;