﻿function showmodal(title, url, height, width)
{
    var browser;
    if (navigator.appName.indexOf('Microsoft') != -1)
        browser = 'IE'
    else if (navigator.appName.indexOf('Netscape') != -1)
        browser = 'Firefox'
    else browser = 'IE';
    
    if(browser == 'IE')
    {
        var intheight = parseInt(height);
        intheight = intheight + 16; 
        height = intheight + '';
    } 
    else
    {
        height = height + 'px';
        width = width + 'px';
    }
    
    top.GB_showCenter(title, url, height, width);
    return false;
}

function abrirVenda() {
    showmodal('autorizacoes','http://www.comprocard.com.br/Autorizacoes/frmAutorizacoes.aspx','525','775');
}

function abrirFaleComPresidente() {
    showmodal('Fale com o Presidente', getCurrentDir() + '/fale_presidente.aspx', '350', '650');
}

function abrirBloquearCartao() {
    showmodal('Bloquear o Cartão', getParentDir() + '/bloquear_cartao.aspx', '450', '500');
}
function getCurrentDir() {
    var d = document.location.href;
    var lindex = d.lastIndexOf('/');
    return d.substr(0, lindex);
}
function getParentDir() {
    var d = getCurrentDir();
    var lindex = d.lastIndexOf('/');
    return d.substr(0, lindex);
}
