
function CheckForm()        
{            
  if (document.form.naam.value == "")            
  {                
    alert("Let op: Het formulier is niet volledig ingevuld.\nVul uw naam in en druk op Verstuur.");                
    document.form.naam.focus();            
  }            
  else if (document.form.emailadres.value == "")            
  {                
    alert("Let op: Het formulier is niet volledig ingevuld.\nVul uw emailadres in en druk op Verstuur.");                
    document.form.emailadres.focus();            
  }   
  else if (document.form.bericht.value == "")            
  {                
    alert("De ingetypte code is onjuist! De code is niet hoofdlettergevoelig.");                
    document.form.bericht.focus();            
  }             
  else          
  {
  	var callback = function (sData)
  	{
  		if (sData == 'TRUE')
  		{
  			var callbackPost = function (sResponse)
  			{
  				jQuery('#countrydivcontainer').html(sResponse);
  			}
  			jQuery.post('/contact/',{'naam' : document.form.naam.value,'adres' : document.form.adres.value,'postcode' : document.form.postcode.value,'telefoon' : document.form.telefoon.value,'woonplaats' : document.form.woonplaats.value,'emailadres' : document.form.emailadres.value,'onderwerp' : document.form.onderwerp.value,'bericht' : document.form.bericht.value,'captcha' : document.form.captcha.value},callbackPost);        
  		}
  		else
  		{
  			alert("De ingetypte code is onjuist! De code is niet hoofdlettergevoelig.");
  			document.getElementById('txtCaptcha').focus();
  		}
  	}
  	jQuery.get('/checkcaptcha/' + document.getElementById('txtCaptcha').value,callback);
  }
  
}    
