function AjustarEspacio(texto) {
    partida = texto.split(' ');
    entera = '';
    for (i=0;i<partida.length;i++){
        if (partida[i].length != 0) {
            entera = entera + ' ';
            if (entera == ' ') {
                entera = '';
            }
            entera = entera + partida[i];
        }
    }
    return entera;
}

function EsEmail(correo){
   var expresion = /(^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*((\.\w{2,3})+$|(\.\w{2,3}\.\w{2,3})+$))/;
   return expresion.test(correo);
}

function EsTelefono(Telefono){
   if ((isNaN(Telefono)) || ((Telefono.indexOf('.') != -1) || (Telefono.indexOf('-') != -1))) {
      return false;
   } else {
      return true;
   }
}