function emailCheck (emailStr) {
var checkTLD=1;
var knownDomsPat=/^(com|net|org|edu|int|mil|gov|arpa|biz|aero|name|coop|info|pro|museum)$/;
var emailPat=/^(.+)@(.+)$/;
var specialChars="\\(\\)><@,;:\\\\\\\"\\.\\[\\]";
var validChars="\[^\\s" + specialChars + "\]";
var quotedUser="(\"[^\"]*\")";
var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/;
var atom=validChars + '+';
var word="(" + atom + "|" + quotedUser + ")";
var userPat=new RegExp("^" + word + "(\\." + word + ")*$");
var domainPat=new RegExp("^" + atom + "(\\." + atom +")*$");
var matchArray=emailStr.match(emailPat);
emailalerttxt = "";

if (matchArray==null) {
	emailalerttxt = "A valid email address, correctly using (@ and .'s)";
	errormsg += "-" + emailalerttxt + "<br />";
	return errormsg;
	}
var user=matchArray[1];
var domain=matchArray[2];
for (i=0; i<user.length; i++) {
if (user.charCodeAt(i)>127) {
	emailalerttxt = "Your email emaddress contains invalid characters.";
	errormsg += "-" + emailalerttxt + "<br />";
	return errormsg;
	}
}
for (i=0; i<domain.length; i++) {
if (domain.charCodeAt(i)>127) {
	emailalerttxt = "Your email domain name contains invalid characters.";
	errormsg += "-" + emailalerttxt + "<br />";
	return errormsg;
	}
}
if (user.match(userPat)==null) {
	emailalerttxt = "Your email doesn't seem to be valid - check your spelling.";
errormsg += "-" + emailalerttxt + "<br />";
	return errormsg;
	}
var IPArray=domain.match(ipDomainPat);
if (IPArray!=null) {
for (var i=1;i<=4;i++) {
if (IPArray[i]>255) {
	emailalerttxt = "Destination IP address is invalid!";
	errormsg += "-" + emailalerttxt + "<br />";
	return errormsg;
	}
}
return true;
}
var atomPat=new RegExp("^" + atom + "$");
var domArr=domain.split(".");
var len=domArr.length;
for (i=0;i<len;i++) {
if (domArr[i].search(atomPat)==-1) {
	emailalerttxt = "Your email address does not seem to be valid - check your spelling, including wrong use of commas, or a full point [.] at the end of the address.";
	errormsg += "-" + emailalerttxt + "<br />";
	return errormsg;
	}
}
if (checkTLD && domArr[domArr.length-1].length!=2 && 
domArr[domArr.length-1].search(knownDomsPat)==-1) {
	emailalerttxt = "Your email address must end in a well-known domain or two letter " + "country.";
errormsg += "-" + emailalerttxt + "<br />";
	return errormsg;
	}
if (len<2) {
	emailalerttxt = "Your email address is missing a hostname - check spelling. Or you may have added a blank space at the end of the address - backspace to remove this.";
errormsg += "-" + emailalerttxt + "<br />";
	return errormsg;
	}
goodFields = goodFields + 1;
return true;
}