function checkEmailInput(inputValue) {
	var emailRe = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*\.(\w{2}|(com|net|org|edu|int|mil|gov|arpa|biz|aero|name|coop|info|pro|museum))$/
	if (inputValue.indexOf("name@xyz.com") >=0) {
		alert("Please submit your own email address");
		return false;
	} else if (!emailRe.test(inputValue))  {
		alert("The email address you have entered, \"" + inputValue + "\", appears to be formatted incorrectly.");	
		return false;
	} else return true;
}