// Validate email address
        public static boolean validateEmail(String strEmail)
        {
                //Set the email pattern string
                Pattern pPattern = Pattern.compile(".+@.+\\.[a-z]+");

                //Match the given string with the pattern
                Matcher mMather = pPattern.matcher(strEmail);

                return mMather.matches();
        }