﻿$(function() {
    $(".experienceBug").click(function() {
        $.fn.colorbox({
            iframe: true,
            open: true,
            href: '/Presentation/AudienceSelector',
            height: 470,
            width: 680,
            overlayClose: false
        });
        return false;
    });
});

document.SetAudience = function(audienceID) {
}

document.CancelSelection = function() {
    $.fn.colorbox.close();
}

function ShowVizergy() {
    $.fn.colorbox({
        iframe: true,
        open: true,
        href: '/Booking/Vizergy',
        height: 470,
        width: 680,
        overlayClose: false
    });
    return false;
}

function ShowWebervations() {
    $.fn.colorbox({
        iframe: true,
        open: true,
        href: '/Booking/Webervations',
        height: 470,
        width: 680,
        overlayClose: false
    });
    return false;
}