<!--
/*
* Copyright (c) 2001 Talis Information Ltd.
* Birmingham Research Park
* Vincent Drive
* Birmingham
* B15 2SQ
* All rights reserved.
*
* This software is the confidential and proprietary information of Talis
* Information Ltd. ("Confidential Information").  You shall not
* disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered into
* with Talis.
*
* @version $Revision: 1.3 $ $Date: 2003/02/17 11:06:38 $
* @author $Author: pxg $
*
*
*/
function checkEmailAddress(p_EmailField){
  var goodEmail = p_EmailField.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi);
  if (goodEmail){
     return true;
  } else {
     alert(InvalidEmail);
     p_EmailField.focus();
     p_EmailField.select();
     return false;
  }

}
//-->