<!--
function initCatch() {
  if (document.getElementById) {
    Catch = document.getElementById("CatchMe").style;
  } else {
    Catch = document.CatchMe;
  }
  if (document.body.offsetWidth) {
    wWidth = document.body.offsetWidth - 100;
    wHeight = document.body.offsetHeight - 100
  }
  if (window.innerWidth) {
    wWidth = window.innerWidth - 100;
    wHeight = window.innerHeight - 100;
  } 
}
function posTop() {
  return typeof window.pageYOffset != 'undefined' ? window.pageYOffset:document.documentElement.scrollTop? document.documentElement.scrollTop: document.body.scrollTop?document.body.scrollTop:0;
}

function change (e,x,y) {
  e.left = x + "px";
  e.top = y + "px";
}

function walk() {
  x = Math.round(Math.random() * wWidth);
  y = Math.round(Math.random() * wHeight + posTop());
  change (Catch, x, y);
  window.setTimeout('walk();',2000);

}

function popCatchme() {
  window.open("catch_me.htm","CatchWindow",
  "toolbar=no,location=no,status=no,menubar=no,scrollbar=no,resizeable=yes");
}

//-->
