/* je nutne nastavit ROOT_WEBU pred pouzitim techto funkci, zarizuje se v indexu */
var urlStranky = '';
function ajax_sendRequest(obsluha, metoda, url) { //vytvori spojeni a spusti fci pro cteni XML
  var xmlHttp = (window.XMLHttpRequest ? new XMLHttpRequest : (window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : false)); 
  if (!xmlHttp) {
    return false;
  }  
  xmlHttp.open(metoda, url); //otevře spojení
  xmlHttp.onreadystatechange = function() { 
    obsluha(xmlHttp); 
  };  
  xmlHttp.send(''); //odešle požadavek na server
  return true; 
}
function zobrazStranku(xmlHttp) { //nacte data a zobrazi je vcetne fotky
  if (xmlHttp == null) {
    ajax_sendRequest(zobrazStranku, 'GET', urlStranky+'&rand='+Math.random());
  }
  else {
    if (xmlHttp.readyState == 4) { // 4 znamená požadavek dokončen
//      alert(xmlHttp.responseText);
      rozdelenyResponseText = xmlHttp.responseText.split('<obsah>', 3);
      var titulek = rozdelenyResponseText[0];
      var obsah = rozdelenyResponseText[1];
      var pocitadlo = rozdelenyResponseText[2];
      document.title = titulek;
      document.getElementById('includovanyObsah').innerHTML = obsah;/**/
      document.getElementById('pocitadloImg').src = pocitadlo+"&screenres="+screen.width+"x"+screen.height+"&colordepth="+screen.colorDepth+"&hexPozadi=FFFFFF";
    }
  }
}
function nactiStranku(url) {
  urlStranky = ROOT_WEBU+'ajax_vratDataStranky.php?urlStranky='+url;
  zobrazStranku(null);
  return false;
}

