function isValidEmail(emailObject) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(emailObject.value) || emailObject.value == ""){
		return true;
	} else {
		return false;
	}
}