/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 * Recibe evento y formulario, y hace submit en caso de pulsar enter.
 */

function iSubmitEnter(oEvento, oFormulario){     
     var iAscii; 
     if (oEvento.keyCode) 
         iAscii = oEvento.keyCode; 
     else if (oEvento.which) 
         iAscii = oEvento.which; 
     else 
         return false;     
     if (iAscii == 13) oFormulario.submit(); 
     return true; 
} 
