function validateContact()
{
	fv = new formValidator();
	
	if (fv.isEmpty("your_name"))
		fv.raiseError("Please specify your name.");
		
	if (fv.isEmpty("your_company"))
		fv.raiseError("Please specify your company name.");
		
	if (fv.isEmpty("your_phone_number"))
		fv.raiseError("Please specify your phone number.");
	
	if (fv.isEmpty("your_email"))
		fv.raiseError("Please specify an email address.");
	else
	{
		if (!fv.isEmailAddress("your_email"))
			fv.raiseError("Please specify a valid email address.");
	}
	
	if (fv.isEmpty("your_comments"))
		fv.raiseError("Please specify a your comments / requirement.");
		
	if (fv.numErrors() > 0)
	{
		fv.displayErrors();
		return false;
	}
	else
		return true;
}