//do not edit or move(above </head> tag) this script!
function bodyWidth() {
  if (window.innerWidth) return window.innerWidth;
  else if (document.body && document.body.offsetWidth) return document.body.offsetWidth;
  else return 0;
}
function bodyHeight() {
  if (window.innerHeight) return window.innerHeight;
  else if (document.body && document.body.offsetHeight) return document.body.offsetHeight;
  else return 0;
}
function rebuild() {
  if (BWidth != bodyWidth() || BHeight != bodyHeight() || browser.isMac)
  window.history.go(0);
}
if (!window.BWidth && window.innerWidth) {
  window.onresize = rebuild;
  BWidth = bodyWidth();
  BHeight = bodyHeight();
}