function controlrappel() {
	var formulaire = document.Frm_Rappel_immediat;
	oTelMask = new Mask("##.##.##.##.##", "string");
	oTelMask.attach(document.Frm_Rappel_immediat.TelTxt);
	formulaire.TelTxt.checkMandatory = true;
	formulaire.TelTxt.checkLength = 14;
	formulaire.TelTxt.libelle = 'Téléphone';
	formulaire.TelTxt.value = "";
	
}
function confirmationtest() {
	if (document.Frm_Rappel_immediat.TelTxt.value == "") { 
	controlrappel();
}
else {
window.open('http://www.pereire-assurances.com/Fr/commun/confirmation_rappel.htm','PEREIRE_ASSURANCES','toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, copyhistory=0, menuBar=0, width=450, height=234, left=300, top=110');
}
}