function SubmitForm()
{
	var f = document.FormEnquiry;
	
	
	if(!f.PersonTitle.value.match(/\S/))
	{
		alert('Please enter your Title.');
		f.PersonTitle.focus();
		return false;
	}

	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.Email.value == '' || f.Email.value.indexOf('.') == -1 || f.Email.value.indexOf('@') == -1)
	{
		alert('Please enter your Email.');
		f.Email.focus();
		return false;
	}
	if(!f.ProductDescription.value.match(/\S/))
	{
		alert('Please enter your Product description.');
		f.ProductDescription.focus();
		return false;
	}
	
	if(window.SubmitFormSpecific)
	{
		if(!SubmitFormSpecific())
			return false;
	
	}
	else
	{
		//alert('function SubmitFormSpecific does  not exist');
	}
		
	
	f.fp.value = '1';

	

	return true;

}
