<!--
// Name:	ValidateSEOLeadForm()
// Desc:	validate SEO Lead Form
function ValidateSEOLeadForm(){
	if (document.SEOLeadForm.FirstName.value == "")	{
       	alert("בבקשה הזן/ני את שמך הפרטי");
       	document.SEOLeadForm.FirstName.focus();
       	return false;
	}

	if (document.SEOLeadForm.LastName.value == "")	{
       	alert("בבקשה הזן/ני את שם המשפחה");
       	document.SEOLeadForm.LastName.focus();
       	return false;
	}

	if (!isEmail(document.SEOLeadForm.Email)){
       	alert("בבקשה הזן/ני כתובת דואר אלקטרוני תקינה");
       	document.SEOLeadForm.Email.focus();
       	return false;
	}

	if (document.SEOLeadForm.Phone.value == "")	{
       	alert("בבקשה הזן/ני מספר הטלפון");
       	document.SEOLeadForm.Phone.focus();
       	return false;
	}

	if (document.SEOLeadForm.Message.value == ""){
      	alert("בבקשה הזן/ני את הודעתך");
       	document.SEOLeadForm.Message.focus();
       	return false;
	}

   	document.SEOLeadForm.LeadFormAction.value = "Submit";	
	return true;
}
//-->