var ajax = new GLM.AJAX();

/* nacitaj zapas a update skore */
function nacitaj_zapas( zapas )
{
 ajax.callPage("http://www.tvojden.sk/new/funkcie/a_nacitaj_zapas.php", zapis_skore, 'POST', 'zapas=' + zapas );
}

function zapis_skore(skore)
{
 document.getElementById("vysledok").innerHTML = skore;
}

/* nacitaj komentare a update texty */
function nacitaj_komentare( zapas )
{
 ajax.callPage("http://www.tvojden.sk/new/funkcie/a_nacitaj_komentare.php", zapis_text, 'POST', 'zapas=' + zapas );
}

function zapis_text( komentare )
{
 document.getElementById("komentar").innerHTML = komentare;
}

/* nacitaj mesta a vytvor nasepkavac */
function nacitaj_mesta( id, id_okno )
{
 var item = document.getElementById( id ).value;
 var okno = document.getElementById( id_okno );

 if ( item.length < 3 )
 {
  okno.style.display = "none";
  return;
 }
 okno.style.display="block";
 ajax.callPage("http://www.tvojden.sk/new/funkcie/a_nacitaj_mesta.php", vytvor_nasepkavac, 'POST', 'mesto=' + item );
}

function vytvor_nasepkavac( mesta )
{
 document.getElementById("mesta").innerHTML = mesta;
}
