<!--
function TeclaEnter(oEvento, LLAVE){ // se activa onkeypress="TeclaEnter(event)" 
	var LLAVE;
	var iAscii; 
      if (oEvento.keyCode) 
         iAscii = oEvento.keyCode; 
      else if (oEvento.which) 
         iAscii = oEvento.which; 
      else return false; 

     if (iAscii == 13) 
	 return false
//	validarForm(LLAVE);
    return false; 
}
-->