1: 2: 3: 4: 5:
function emailformat(sText) { var objRegExp = /^\w+([\-\.\+]\w+)*\@\w+([\-\.]\w+)*\.[a-z]{2,4}$/i; return (!objRegExp.test(sText)) }