﻿function ShowPopup(selector, width, height) {
    if (jQuery().colorbox) {
        var div = $(selector);
        div.css("display", "");

        if (height == undefined)
            height = 500;

        if (width == undefined)
            width = 500;
        
        div.colorbox({ open: true, innerWidth: width, innerHeight: height, inline: true, href: selector, onClosed: function() { div.css("display", "none"); } });
    } // if

    return false;
} // function
