//onlineopinion ver:1.4:
var O_NS4=(document.layers)?1:0;
var O_IE4=(document.all)?1:0;
var O_MAC = (navigator.appVersion.indexOf("Macintosh") > -1);

if (O_NS4) {
 var origWidth = innerWidth;
 var origHeight = innerHeight;
 IEBR="";
}
if (O_IE4) {
 var origWidth=document.body.clientWidth;
 var origHeight=document.body.clientHeight;
 IEBR="<BR>";
}

function O_Resize(){
 if (O_NS4) {
  if (innerWidth == origWidth && innerHeight == origHeight) return;
  origWidth = innerWidth;
  origHeight = innerHeight;
 }
 if (O_IE4) {
  if (document.body.clientWidth == origWidth && document.body.clientHeight == origHeight) return;
  origWidth=document.body.clientWidth;
  origHeight=document.body.clientHeight;
 } 
 location.reload();
}

function redo() {
 if (parseFloat(navigator.appVersion)<4 || (navigator.appName!="Microsoft Internet Explorer" && navigator.appName!="Netscape")) return;
 if (O_MAC && O_IE4) return; 
 if (O_NS4) window.onresize=O_Resize;
 if (O_IE4) onresize=O_Resize;
 window.onresize=O_Resize;
 }

