﻿//** Verifica Login Suporte **************************************************************************************************************
function IWS_LogarSuporte(codigo, matricula, modulo, cpf, cpfDependente) 
{
    var usuario = jQuery('#edtUsuario').val();
    var senha = jQuery('#edtSenha').val();

    if (usuario && senha) 
    {
        try 
        {
            ShowAguarde(true);
            JRAjax.IWS_LogarSuporte(ID, SessionID, usuario, senha, codigo, matricula, modulo, cpf, cpfDependente, cbk_IWS_LogarSuporte);
        }
        catch (e) 
        {
            ShowAguarde(false);
            alert(AjaxNotFound);
        }
    }
}

function cbk_IWS_LogarSuporte(Request) 
{
    try
    { 
        if (!Request.value[0])
        {
            alert(Request.value[1]);
            var Comp = document.getElementById(Request.value[2]);
       
            if (Comp != null)
            {
                Comp.focus();
                Comp.select();
            }
            return ;
        }
        else
        {
            new Function (Request.value[3])();
        } 
    }
    finally
    {
        ShowAguarde(false);
    }
}
