// JavaScript Document
function ajaxFunction(url,id)
{
var xmlhttp;
if (window.XMLHttpRequest)
  {
  // code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else if (window.ActiveXObject)
  {
  // code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
else
  {
  alert("Your browser does not support XMLHTTP!");
  }
xmlhttp.onreadystatechange=function()
{
if(xmlhttp.readyState==4)
  {
  document.getElementById(id).innerHTML=xmlhttp.responseText;
  
  }
  /*else{
	  document.getElementById(id).innerHTML="<center style=\"padding-top:150px;\"><img style=\"border:0px;\" src=\"../../css/img/loder.gif\" border=\"0\" \></center>";
	  }*/
}
if (url!=null){
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
}


}

//galéris kód
function ablak(kod) {
	var url='include/popupgal.php?galid='+kod;
window.open(url,'','toolbar=no,menubar=no,location=no,height=580,width=700');
}
