	function getXMLHttpRequest()
	{
		var xmlHttp;
		try{  xmlHttp=new XMLHttpRequest();  }
		catch (e)
  		{  // Internet Explorer  
			try{    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");    }
  			catch (e)
    		{    
				try{      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");      }
    			catch (e){      alert("Your browser does not support AJAX!");      return false;      }    
			}  
		} 
		return xmlHttp;
	}
	
	function opslaanStem(lijst, indexNr, naam) {
		var xmlHttp = getXMLHttpRequest();
		if(lijst==1)
			url = "opslaanstem25.php?IndexNr="+indexNr+"&Naam="+naam;
		else if(lijst==2)
			url = "opslaanstem15.php?IndexNr="+indexNr+"&Naam="+naam;
		else
			url = "opslaanstemNom.php?IndexNr="+indexNr+"&Naam="+naam;
		xmlHttp.open("POST", url, true);
    	xmlHttp.onreadystatechange=function()
    	{
    		if(xmlHttp.readyState==4)
      		{
      			document.getElementById("content").innerHTML = xmlHttp.responseText;
      		}
    	}
    	xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");    
    	xmlHttp.send('stemmen=1');
	}
