
 <!--
 // Webs Unlimited's J-BOTS FrontPage  JavaScript Generator version 4.0
// Copyright Webs Unlimited 1998,1999 All rights reserved - http://WebsUnlimited.com
function EmailValid(address){ // check format validity
    var first, last;
    if(address.indexOf(" ") != -1) {return false; }
    if(address.indexOf(".@") != -1) {return false;}
    if(address.indexOf("@.") != -1) {return false;}
    if(address.indexOf(".") == address.length-1) {return false;}
    first = address.indexOf("@");
    if(first == -1 || first == 0) { return false; }
    if(first != address.lastIndexOf("@")) { return false; }
	   if(address.lastIndexOf(".") != -1 && (address.length - address.lastIndexOf(".")) < 6) { return true; };
	   return false;
}
//--></script>
