<!--
/* Got this from webmonkey
   Warns that sometimes NN4 might be thrown
   into endless recycling loop!
*/
if (document.layers) {
   window.onResize = reloadIt;
}
function reloadIt() {
  document.location = document.location;
}
// -->
