function sendForm(formid){
	$("#contactSubmit").attr("disabled","disabled");	
	
	if(formValidate(formid)){
		$('#'+formid).append("<input type='hidden' name='hidden' value='1'>");
		
		$.post("modules/gastenboek/gastenboek_send.php",$("#"+formid).serialize(),function(data){
			$('#gbReturn').prepend(data);				
			return false;			
		});
	}

	$("#contactSubmit").removeAttr("disabled");
	return false;	
}
