function isValidEmailAddress(text) {
	var emailRe = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*\.(\w{2,})$/;
	return emailRe.test(text);
}