//' 1.00 / 2002-02-14 / CB => Création

var vLOC_type_9_checkForm_1=	null;
var vLOC_type_9_checkForm_2=	'Vous devez remplir au moins un numéro de téléphone';
var vLOC_type_9_checkForm_3=	'Ligne 1';
var vLOC_type_9_checkForm_4=	'Ligne 2';
var vLOC_type_9_checkForm_5=	'Code secret ';
var vLOC_type_9_checkForm_6=	'EMail';
var vLOC_type_9_checkForm_7=	'EMail d\' un ami';
var vLOC_type_9_checkForm_8=	'EMail d\' un autre ami';
var vLOC_type_9_checkForm_9=	'EMail d\' un troisieme ami';

function submit_form_offer() {
	//' Check CLIs
	if (document.form_offer.cli_1.value=="") {
		alert(vLOC_type_9_checkForm_2);
		return;
	}
	if (document.form_offer.cli_1.value!="" &&
		 checkPhone(document.form_offer.cli_1,				vLOC_type_9_checkForm_3						, 10	)==false)	return;
	
	if (checkNumField	(document.form_offer.cli_userPin,	vLOC_type_9_checkForm_5	, 4	)==false)	return;
		if (document.form_offer.email.value=="") {
		alert(vLOC_type_9_checkForm_6);
		return;
	}	
	
	if (document.form_offer.email.value!="" &&
	    checkEMailField	(document.form_offer.email,		vLOC_type_9_checkForm_6							, 5	)==false)	return;   
	document.form_offer.submit();
}

