// ************************  function Is_EMail()  ***************
// ********************            Ver 1.3              ***************
// 1. 	EMail - the email address to check

function Is_EMail(EMail)
{
return EMail.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi);
}