function skola(str)
{
if (str=="")
  {
  document.getElementById("skola").innerHTML="";
  return;
  }
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("skola").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","/wp-content/themes/sihtheme/getcontent.php?q="+str,true);
xmlhttp.send();
}
function typ(str)
{
if (str=="")
  {
  document.getElementById("omrade").innerHTML="";
  return;
  }
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("omrade").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","/wp-content/themes/sihtheme/getcontent2.php?typ="+str,true);
xmlhttp.send();
}
function show(a){
var e=document.getElementById(a);
e.style.display=e.style.display==''||e.style.display=='none'?'block':'none';
}

function ord(str)
{
if (str=="")
  {
  document.getElementById("sokord").innerHTML="";
  return;
  }
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("sokord").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","/wp-content/themes/sihtheme/textsearch.php?sokord="+str,true);
xmlhttp.send();
}
