var y1 = 10;   // change the # on the left to adjuct the Y co-ordinate
(document.getElementById) ? dom = true : dom = false;

function hideIt() {
  if (dom) {document.getElementById("reklama").style.display='none';}
}

function showIt() {
  if (dom) {document.getElementById("reklama").style.visibility='visible';}
}

function placeIt() {
  if (dom && !document.all) {document.getElementById("reklama").style.top = window.pageYOffset + (window.innerHeight - (window.innerHeight-y1)) + "px";}
  if (document.all) {document.all["reklama"].style.top = document.documentElement.scrollTop + (document.documentElement.clientHeight - (document.documentElement.clientHeight-y1)) + "px";}
  window.setTimeout("placeIt()", 10); 
}