function verifyContactUs () {
	var name = returnObject('name');
	var email = returnObject('email');
	var phone = returnObject('phone');

	first_failed_field = null;
	var errors = '';
	
	errors += validateTextField(name, 'Name');
	errors += validateEmail(email);
	if ((phone.value.length > 0) && (phone.value.length < 10))
		errors += '\nTelephone field is incomplete.';
	errors += validateTextField(comments, 'Comments');
	
	if (errors.length > 0) {
		alert('Please correct the following error(s):\n' + errors);
		first_failed_field.focus();
		return false;
	}
	return true;
}