﻿
//****************************************************************************************************************************
//Função para abrir popups customizados
var newWindow;
function openNewWindow(url, width, height) {
    if (!width) width = 800;
    if (!height) height = 600;
    newWindow = window.open(url, 'Popup', 'width=' + width + ', height=' + height + ', menubar=no, location=no');
    try { if (window.focus) { newWindow.focus() } } catch (exc) { }
}

function ajustamodalpopups() {
    setTimeout(function() {
        $('.ModalPopup').css('display', 'block');
    }, 200)
    setTimeout(function() {
        if ($.browser.safari) {
            $('.PopupBackground').css('background-image', 'url()');
        }
    }, 0);
}

