﻿function GoPopGo(width, height) {
    var width = width != undefined ? width : 450;
    var height = height != undefined ? height : 450;
    
    $('#' + panelID).width(width)
    $('#' + panelID).height(height)

    $find(popupId).show()
}

function ClosePopClose(dialog) {
    dialog.container.fadeOut('slow', function() {
    dialog.overlay.fadeOut('slow', function() {
	            $.modal.close();
            });
        });
    }


function openGlobalPopup(contentID, width, height) {
    __doPostBack(updatePanelID, 'POP:' + contentID);
    window.setTimeout(function() { GoPopGo(width, height) }, 200);
    
}

function openThirdPartyPopup(url, width, height) {
    __doPostBack(updatePanelID, 'POP:thirdParty:' + escape(url));
    window.setTimeout(function() { GoPopGo(width, height) }, 200);
}

