function validEmail(email) {
	if (isBlank(email)) {
		return false;
	}
	if ((email.indexOf('@') <= 0)) {
		return false;
	}
	return true;
}