var IW= 0;
var IH= 0;
var PX= 0;
var PY= 0;
var ZIN= 0;
var us= null;
var IMGW= 35;
var IMGH= 16;
var LSAFETY= 20;
var TSAFETY= 17;
function branding()
  {
  if (navigator.appVersion.indexOf("Mac") == -1)
    {
    oldIW= IW;
    oldIH= IH;
    oldPX= PX;
    oldPY= PY;
    if ((document.body.clientHeight != oldIH)||(document.body.clientWidth != oldIW)||(document.body.scrollLeft != oldPX)||(document.body.scrollTop != oldPY))      {
      alldivs= document.all.tags("DIV");
      if (us == null){
        for (i=0; i<alldivs.length; i++)
          {
          us= alldivs(i);
          if (us.id == "*")
            break;
          }
      }
      if (us != null){
        us.style.display= "none";
        IH= document.body.clientHeight;
        IW= document.body.clientWidth;
        PX= document.body.scrollLeft;
        PY= document.body.scrollTop;
        us.style.top= (IH+PY-(IMGH+TSAFETY));
        us.style.left=(IW+PX-(IMGW+LSAFETY));
        for (i=0; i<alldivs.length; i++){
          templay= alldivs(i);
          if (templay.style.zIndex > ZIN)
            us.style.zindex= (templay.style.zIndex + 1);
        }
        us.onmouseover= neat_mouseover_effect;
        us.onmouseout= neat_mouseout_effect;
		us.style.display= "";
      }
  }
 }
}
function neat_mouseover_effect(){
  if(us != null){
    window.status="ChooseWell";
    return true;
  }
}

function neat_mouseout_effect(){
  if(us != null){
    window.status="";
    return true;
  }
}
setInterval("branding()",100);