if(document.layers) {
window.onresize = rebuild;
function rebuild(){
location.reload();
}
}

if (self != top) top.location.href = self.location.href;


function init() {
sSheet = document.styleSheets[document.styleSheets.length-1];
if ( document.defaultView.getComputedStyle(document.body,"").getPropertyValue("font-size") == "14px" ){
  sSheet.insertRule("body {font-size: 16px}",sSheet.cssRules.length);
  }
}

if ( document.defaultView && document.styleSheets ) window.onload = init;


