function detectEnterCitysearch(event)
{
if(event.keyCode == 13)
{
citysearch();
}
}
function citysearch()
  {
  var xmlHttp;
  try
    {
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      try
        {
        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
      catch (e)
        {
        alert("A böngésződ nem képes az AJAX technológia használatára!\nFrissítsd, hogy használhasd az webáruházat!");
        return false;
        }
      }
    }
    xmlHttp.onreadystatechange=function()
      {
      if(xmlHttp.readyState==4)
        {
        if(xmlHttp.responseText.length>3)
        {
         document.getElementById("output").innerHTML=xmlHttp.responseText;
        }
        else
        {
         location.href="webshops"+xmlHttp.responseText+".php";
        }
        }
      }
    if(document.citysearch_form.searched_city.value != "")
    {
    xmlHttp.open("post","citysearch.php",true);
    xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=ISO-8859-2");
    xmlHttp.send("searched_city=" + encodeURIComponent(document.citysearch_form.searched_city.value));
    }
}
