﻿//Abre popup do atendimento on-line no centro da tela
function PopupAtendimentoOnline(url, win, w, h)
{
  center_x = (screen.width - w)/2;
  center_y = (screen.height - h)/2;
  
  window.open(url, win, 'width=' + w + ',height=' + h + ',top=' + center_y + ',left=' + center_x + ',scrollbars=2,location=0');
}

//Mostra mensagem de erro na pagina
function MostrarErro(erro)
{
    $("#ctl00_lblMensagemErro").text(erro);
    $("#ctl00_pnlMensagemErro").fadeIn(1500);
    setTimeout('$("#ctl00_pnlMensagemErro").fadeOut("def")', 10000);
}

function pageLoad(sender, args){
    /// <summary>
    /// DOTNET infra
    /// executa apos carregar a tela (DOM READY)
    /// </summary>
    
    // checa versao do flash player para definicao do conteudo
    // do progress template
    if (typeof swfobject != 'undefined')
    {
        swfobject.embedSWF( "swf/progress_template.swf" , "progress_img_container", "130", "40", "5.0.0", false, false, {wmode:"transparent"});
    }
}