function zobr_okno(current,e,cis,text)
{
  if (document.all&&document.readyState=="complete")
  	{
    document.all.mapa_graf.innerHTML= text;
    document.all.mapa_graf.style.pixelLeft=461;
    document.all.mapa_graf.style.pixelTop=391;
    document.all.mapa_graf.style.visibility="visible";
	}
  else if (document.layers)
  	{
    document.mapa_graf.document.nstip.document.write('<b>'+text+'</b>');
    document.mapa_graf.document.nstip.document.close();
    document.mapa_graf.document.nstip.left=0;
    currentscroll=setInterval("scrolltip()",100);
    document.mapa_graf.left=459;
    document.mapa_graf.top=389;
    document.mapa_graf.visibility="show";
	}
  else
  	{
    document.getElementById("mapa_graf").innerHTML= text;
    document.getElementById("mapa_graf").style.left=459;
    document.getElementById("mapa_graf").style.top=389;
    document.getElementById("mapa_graf").style.visibility="visible";
	}
}

function schovej_okno()
{
  if (document.all)
    document.all.mapa_graf.style.visibility="hidden";
  else if (document.layers)
  	{
    clearInterval(currentscroll);
    document.mapa_graf.visibility="hidden";
	}
  else
    document.getElementById("mapa_graf").style.visibility="hidden";
}

