function changeLogo() {
  if (typeof document.getElementById == "undefined") {
    return;
  }
  var the_logo = document.getElementById("theLogo");
  if (the_logo == null) {
    return;
  }
  the_logo.src = "http://www.hitglobus.de/hit.php?u=6765&t=1";
  the_logo.width = "468";
  the_logo.height = "60";
  the_logo.onclick = changeLogo_onclick;
  the_logo.onmouseover = changeLogo_onmouseover;
  the_logo.onmouseout = changeLogo_onmouseout;
  the_logo.className = "bgcolor";
  the_logo.style.cursor = "pointer";
  setTimeout("changeLogo()", 60000);
}

function changeLogo_onclick() {
  window.open("/redirect/?http://www.hitglobus.de/clk.php?u=6765&t=1", "bfExtLink");
}
function changeLogo_onmouseover() {
  window.status = "/redirect/?http://www.hitglobus.de/clk.php?u=6765&t=1";
}
function changeLogo_onmouseout() {
  window.status = window.defaultStatus;
}

function onLoad() {
  if (MODULE == "/") {
    //setTimeout("changeLogo()", 50000);
  }
  else {
    setTimeout("changeLogo()", 60000);
  }
}
window.onload = onLoad;
