function SubmitForm()
{
	var f = document.FormEnquiry;
	
	


	if(!f.ContactFamilyName.value.match(/\S/))
	{
		alert('Please enter Contact family name.');
		f.ContactFamilyName.focus();
		return false;
	}
	if(!f.ContactFirstName.value.match(/\S/))
	{
		alert('Please enter Contact first name.');
		f.ContactFirstName.focus();
		return false;
	}
	if(!f.CompanyName.value.match(/\S/))
	{
		alert('Please enter Company name.');
		f.CompanyName.focus();
		return false;
	}
	
	if(!f.Country.value.match(/\S/))
	{
		alert('Please enter Country.');
		f.Country.focus();
		return false;
	}

	/*
	if(!f.Fax.value.match(/\S/))
	{
		alert('Please enter Fax.');
		f.Fax.focus();
		return false;
	}
	*/
	if(f.Email.value == '' || f.Email.value.indexOf('.') == -1 || f.Email.value.indexOf('@') == -1)
	{
		alert('Please enter your Email.');
		f.Email.focus();
		return false;
	}
	/*
	if(!f.Website.value.match(/\S/))
	{
		alert('Please enter Website.');
		f.Website.focus();
		return false;
	}
	*/


	
	if(window.SubmitFormSpecific)
	{
		if(!SubmitFormSpecific())
			return false;
	
	}
	else
	{
		//alert('function SubmitFormSpecific does  not exist');
	}
		
	
	f.fp.value = '1';

	

	return true;

}
