// JavaScript Document
/* RollOver function */
importPackage( "../../js/devis.js" );
/* Test du formulaire sur la page index */
function CheckFormDevisStep1() {
	document.getElementById( "form1" ).submit();	
}
/* Test et envoi de la saisie du call Back */
function callBack() {
	var tel = document.getElementById( "callBack" ).value;
	if ( ! tel ) { return false; }
	if ( ! isNumeric( tel ) ) {
		alert( "Veuillez entrez un num\351ro de t\351l\351phone au format : 0102030405" );	
		return false;
	}
	if ( tel.substring( 0, 1 ) != "0" ) {
		alert( "Veuillez entrez un num\351ro de t\351l\351phone au format : 0102030405" );	
		return false;
	}
	PopUp( "http://www.comparer-ma-mutuelle.com/templates/callBack.php?tel="+tel );	
}
/* Fonction daide sur les formulaires */
function helpForm( type ) {
	switch ( type ) {
		case "REGAFF" : PopUp( "http://www.comparer-ma-mutuelle.com/templates/helpForm.php?type="+type );	 break;
	}
}
