function nuevoAjax(){ 
  var xmlhttp=false; 
  try { 
   // Creación del objeto ajax para navegadores diferentes a Explorer 
   xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); 
  } catch (e) { 
   // o bien 
   try { 
     // Creación del objet ajax para Explorer 
     xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (E) { 
     xmlhttp = false; 
   } 
  } 

  if (!xmlhttp && typeof XMLHttpRequest!='undefined') { 
   xmlhttp = new XMLHttpRequest(); 
  } 
  return xmlhttp; 
} 

function handleHttp() { 
    if (ajax.readyState == 4) { 
       if (ajax.status == 200) { 
          if (ajax.responseText.indexOf('invalid') == -1) {
             // Armamos un array, usando la coma para separar elementos			
             document.getElementById("veri").innerHTML = ajax.responseText;
             enProceso = false;
			 return ajax.responseText;
          }
       }
    }
}






function minuscula()
{
var txt=document.frm.usuario.value
document.frm.usuario.value=txt.toLowerCase()
}

function open_frm()
{
  window.open("etc/subir_imagen.php","Subir_archivo","height=50,width=220,status=no,top=100,left=50");
}