function isValidEmail(str) {
	if ((str.indexOf(".") > 2) && (str.indexOf("@") > 0)) {
		alert('You have been added to the Toms River Regional Schools update list.');
		return true;
	}
	else {
		alert('Invalid e-mail address.  Please try again.');
		return false;
	}
}
