function GetVerification(veriid,vericode)
{ 	
	//Create AJAX object
  xmlHttp=GetXmlHttpObject();
  if (xmlHttp==null)
  {
    ServerResponse("Your browser does not support AJAX!");
    return;
  } 
  var url="/verificatie/checkverification.php";
  xmlHttp.onreadystatechange=GetVerificationstateChanged;
  xmlHttp.open("POST",url,true);
	xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); 
	//Send Data
	
  xmlHttp.send('veriid='+veriid+'&vericode='+vericode+'&imagelink='+document.getElementById('verificationimage').src);
	
}
function GetVerificationstateChanged() 
{ 
  if (xmlHttp.readyState==4)
  { //Receive Data
    ServerResponse(xmlHttp.responseText);
  }
}