| Use this JavaScript to validate Email addresses on the client-side. 
        To validate an Email address, use the function in the following manner: 
        isEmail(someEmailAddress). The function returnstrueif the Email is valid, else the function returnsfalse. The isEmail()function does not use regular expressions 
        while theisEmail2()function uses regular expression for 
        validation. |