
suitClass.prototype.browserNSReload = function(bool) {  // version 1.0
  if (bool == true) {
    if (suit.pBrowser() == "ns4") {
      suit.pWide = innerWidth;
      suit.pHigh = innerHeight;
      onresize=suit.browserNSReload;
    }
  }
  else if (innerWidth != suit.pWide || innerHeight != suit.pHigh) location.reload();
}

suit.browserNSReload(true);
