
function window_onresize() {
  var ww = 0;
  
  if(navigator.appName == "Netscape") {
	var wm = document.jsbrand;
	}

	if (navigator.appVersion.indexOf("MSIE") != -1){
	var wm = document.all.jsbrand;
  }
  
  if(navigator.appName == "Netscape") {
   
   ww = window.innerHeight;
   wm.visibility = "hide";
   wm.top = ww + window.pageXOffset - 25;
   wm.visibility="show";
 }

 if (navigator.appVersion.indexOf("MSIE") != -1){
  if (navigator.appVersion.indexOf("Mac") == -1){
   wm.style.display = "none";
   ww = document.body.clientHeight + document.body.scrollTop;
   wm.style.top = ww - 25;
   wm.style.left = 30;
   wm.style.display = "";

  }
  }
}


