function VerifFormContact(form) {

	var opt = {
	    // Use POST
	    method: 'post',
	    // Send this lovely data
	    parameters: Form.serialize(form),
	    // Handle successful response
	    onSuccess: function(t) {
	        if(t.responseText!=""){
		        	$("MessageFlash").innerHTML=t.responseText;
		        	$("MessageFlash").show();
		        	Effect.Fade('MessageFlash',{duration:5, to:0.3, from: 0.7});
	        }
	        else{form.submit();}
	    }
	}
	
	new Ajax.Request('verifformcontact.php', opt);
	return false;
	
}
function VerifFormADH(form) {

	var opt = {
	    // Use POST
	    method: 'post',
	    // Send this lovely data
	    parameters: Form.serialize(form),
	    // Handle successful response
	    onSuccess: function(t) {
	        if(t.responseText!=""){
		        	$("MessageFlash").innerHTML=t.responseText;
		        	$("MessageFlash").show();
		        	Effect.Fade('MessageFlash',{duration:5, to:0.3, from: 0.7});
	        }
	        else{form.submit();}
	    }
	}
	
	new Ajax.Request('verifformadh.php', opt);
	return false;
	
}
function VerifFormRecrut(form) {

	var opt = {
	    // Use POST
	    method: 'get',
	    // Send this lovely data
	    parameters: Form.serialize(form),
	    // Handle successful response
	    onSuccess: function(t) {
	        if(t.responseText!=""){
		        	$("MessageFlash").innerHTML=t.responseText;
		        	$("MessageFlash").show();
		        	Effect.Fade('MessageFlash',{duration:5, to:0.3, from: 0.7});
	        }
	        else{form.submit();}
	    }
	}
	
	new Ajax.Request('verifformrecrut.php', opt);
	return false;
	
}
//function getPJCV(file)
//{	var tmp = $(file).value.split('/');
//	$('msgPJCV') = tmp[tmp.length-1];
//}