function validate_form() {
	
	// Customer section
	if ( ! check_entered (document.creatiweb_email.company_name))
		return error (document.creatiweb_email.company_name, "Please enter a company name");
	if ( ! check_entered (document.creatiweb_email.Name))
		return error (document.creatiweb_email.Name, "Please enter a contact person");
	if ( ! check_entered (document.creatiweb_email.Email))
		return error (document.creatiweb_email.Email, "Please enter an email address");	
	return (true);
}

