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

Event.observe( window, 'load', 	function(event) {

    /*if($('loginUsuario') != null){
        
        Event.observe('loginUsuario', 'submit', function(event) {
            var nombre = $F('nombre').strip();
            if(nombre == ''){
                alert('Falta el nombre de usuario');
                Event.stop(event);
                $('nombre').focus()
            }else{
                hash = hex_sha1($F('clave'));
                $('clave').value = hash;   
            }
  
        });
    }*/
});
