function sendContact(formid){
	if(formValidate(formid)){
		/* captcha */
		if($('#formCode').val()){
			var passed = $.ajax({
				type: "POST",
				url: "modules/captcha/checkcode.php",
				data: "code="+$('#formCode').val(),			
				async: false
			}).responseText;
			
			if(passed=='true'){
				$('#formCodeError').html("<img src='img/accept.png'><font color='green'>Antwoord is juist.</font>");				
				
				$("#contactSubmit").attr("disabled","disabled");
				$('#'+formid).append("<input type='hidden' name='hidden' value='1'>");
				
				$.post("modules/contact/inc/verstuur.inc.php",$("#"+formid).serialize(),function(data){
					$('#'+formid).slideUp(function(){																								 
						$("#formReturn").html(data).fadeIn();
					});
					return false;			
				});
		
				$("#contactSubmit").removeAttr("disabled");			
				
				return true;
			}else{
				$('#formCode').css("background-color","red"); 
				$('#formCodeError').html("<img src='img/cancel.png'> <font color='red'>Fout antwoord.</font>");
				return false;
			}
		}
		return false;	
	}
	return false;	
}