function validateForm(curFm) {
	if (curFm.Contact_FirstName.value == '') {
		window.alert('Please fill in the First Name blank');
		return false;
	}
	if (curFm.Contact_LastName.value == '') {
		window.alert('Please fill in the Last Name blank');
		return false;
	}

	if (!(curFm.Contact_Email.value.indexOf('@') >= 1 && curFm.Contact_Email.value.indexOf('.') >= 1)) {
		window.alert('Please fill in a valid email address');
		return false;
	}	
	return true;
}
