function bCheckAutentication_body() {
        if (document.frm_authentication_body.login.value == '') {
                alert('Inserire login!');
                document.frm_authentication_body.login.focus();
                return false;
        }
        if (document.frm_authentication_body.password.value == '') {
                alert('Inserire password!');
                document.frm_authentication_body.password.focus();
                return false;
        }
}

