function votes(vote, id)
  {
  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 a szavazást!");
        return false;
        }
      }
    }
    xmlHttp.onreadystatechange=function()
      {
      if(xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
        {
        document.getElementById('points_span_'+id).innerHTML=xmlHttp.responseText;
        }
      }
    xmlHttp.open("GET","vote.php?id="+id+"&vote="+vote,true);
    xmlHttp.send(null);
  }
