<!--
var y1 = 20;   // change the # on the left to adjuct the Y co-ordinate
(document.getElementById) ? dom = true : dom = false;

function hideIt() {
  if (dom) {
  document.getElementById("fixme").style.visibility='hidden';
  document.getElementById("span").style.visibility='hidden';
  }
}

function opoznienie() {
     setTimeout("hideIt()", 3000);
}

function showIt() {
  if (dom) {document.getElementById("fixme").style.visibility='visible';}
}



function hideIt_przycisk() {
  if (dom) {document.getElementById("span").style.visibility='hidden';}
}

function opoznienie_przycisk() {
     setTimeout("hideIt_przycisk()", 3000);
}

function showIt_przycisk() {
  if (dom) {document.getElementById("span").style.visibility='visible';}
}

function opoznienie_pokazania_przycisk() {
     setTimeout("showIt_przycisk()", 10000);
}

// -->
