	function Form_Validatore(theForm)
		{
		//---------------------------------------------------------------------
		if (theForm.First_Name.value == "")
			{
				alert("First Name mus be ...");
				theForm.First_Name.focus();
				return (false);
			}
		if (theForm.Last_Name.value == "")
			{
				alert("Last Name mus be ...");
				theForm.Last_Name.focus();
				return (false);
			}
		if (theForm.Company_Name.value == "")
			{
				alert("Company Name mus be ...");
				theForm.Company_Name.focus();
				return (false);
			}
		if (theForm.Country.value == "")
			{
				alert("Country mus be ...");
				theForm.Country.focus();
				return (false);
			}
		if (theForm.Email.value == "")
			{
				alert("E-mail mus be ...");
				theForm.Email.focus();
				return (false);
			}
		return (true);
		}