
// **************************************************** 
// ************************ EMAIL *********************
// ****************************************************

// ---------------------------------------------------------------------- //
//                           isEmail									  //
// s es una direccion de correo valida
// ---------------------------------------------------------------------- //

function isemail (s) {
    if (isempty(s)) 
       if (isemail.arguments.length == 1) return defaultEmptyOK;
       else return (isemail.arguments[1] == true);
       
    if (isWhitespace(s)) return false;
    
    var i = 1;
    var sLength = s.length;
    
    while ((i < sLength) && (s.charAt(i) != "@"))
    { i++
    }

    if ((i >= sLength) || (s.charAt(i) != "@")) return false;
    else i += 2;

    while ((i < sLength) && (s.charAt(i) != "."))
    { i++
    }

    if ((i >= sLength - 1) || (s.charAt(i) != ".")) return false;
    else return true;
}

// **************************************************** 
// ************** FIN RUTINAS DE VALIDACIONES *********
// **************************************************** 




