function list(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 az oldalt!");
        return false;
        }
      }
    }
    xmlHttp.onreadystatechange=function()
      {
      if(xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
        {
        document.getElementById("list_"+id).innerHTML=xmlHttp.responseText;
        }
      }
    if(id!="")
    {
    xmlHttp.open("GET","list.php?question_id="+id,true);
    xmlHttp.send(null);
    }
  }
