function checkWholeForm(feedback) {
	var why = "";
			
		why += isEmpty(feedback.first_name.value, "NAME");
		if (why != "") {
			alert(why);
			feedback.first_name.focus();
			return false;
		}
		
		
		why += checkEmail(feedback.email.value, "EMAIL ADDRESS");
		if (why != "") {
		alert(why);
		feedback.email.focus();
		return false;
		}
		
		why += isEmpty(feedback.message.value, "MESSAGE");
		if (why != "") {
			alert(why);
			feedback.message.focus();
			return false;
		}
			
	return true;
}

