//' Version :
//' ---------
//' 1.02 / 2002-11-28 / DB => Modif Appel a checkPhoneIT 
//' 1.01 / 2002-09-03 / CB => Modif 'checkUserPIN'
//' 1.00 / 2002-02-14 / CB => Création

var vLOC_type_9_checkForm_1=	null;
var vLOC_type_9_checkForm_2=	'Devi inserire almeno un numero telefonico ';
var vLOC_type_9_checkForm_3=	'linea 1';
var vLOC_type_9_checkForm_4=	'linea 2';
var vLOC_type_9_checkForm_5=	'codice segreto ';
var vLOC_type_9_checkForm_6=	'la tua email';
var vLOC_type_9_checkForm_7=	'la tua email di un amico ';
var vLOC_type_9_checkForm_8=	'la tua email di un altro amico ';
var vLOC_type_9_checkForm_9=	'la tua emaill di un terzoi';

function submit_form_offer() {
	//' Check CLIs
	//'if (document.form_offer.cli_1.value=="") {
	//'	alert(vLOC_type_9_checkForm_2);
	//'	return;
	//'}
	if (checkPhone(document.form_offer.cli_1,		vLOC_type_9_checkForm_2	, 7,true	)==false)	return;
	
	if (checkUserPIN	(document.form_offer.cli_userPin,	vLOC_type_9_checkForm_5	, 4	)==false)	return;
	if (checkEMailField	(document.form_offer.email,		vLOC_type_9_checkForm_6	, 5	)==false)	return;
	    
	if (document.form_offer.email_1.value!="" && 
		checkEMailField (document.form_offer.email_1, vLOC_type_9_checkForm_7, 5)==false) return;
	
	if (document.form_offer.email_2.value!="" && 
		checkEMailField (document.form_offer.email_2, vLOC_type_9_checkForm_8, 5)==false) return;
	
	if (document.form_offer.email_3.value!="" &&
		checkEMailField (document.form_offer.email_3, vLOC_type_9_checkForm_9, 5)==false) return;
	
	document.form_offer.action= 'OfferDelivery.asp';
	document.form_offer.submit();
}
