function mycontact() {
document.ftel.reset();
	/* le mask de saisie */	
oStringMask = new Mask("##.##.##.##.##");
oStringMask.attach(document.ftel.ntel);
     };
	 
function myauto() {
document.f1.reset();
	/* le mask de saisie */	
oNumberMask = new Mask(document.f1.cp.value, "number");
oNumberMask.attach(document.f1.cp);
oStringMask = new Mask("##.##.##.##.##");
oStringMask.attach(document.f1.mobile);
oStringMask.attach(document.f1.domicile);	
     };
	 
function mycontacter() {
document.cont.reset();
	/* le mask de saisie */	
oStringMask = new Mask("##.##.##.##.##");
oStringMask.attach(document.cont.tel);
     };