﻿function showColorbox(height, div) {
    var innerH = getHeight(div) + "px";
    var divId = "#" + div;

    $.colorbox({ innerWidth: "519px", innerHeight: innerH, inline: true, href: divId });
}

function getHeight(target) {
    var divHeight = "";
    switch (target) {
        case "thermometer-popup":
            divHeight = "580";
            break;
        case "code-popup":
            if (($('#code-popup').hasClass('en-ca')) && ($('#code-popup').children('div').hasClass('Sweeps'))) {
                divHeight = "175";
            } else {
                divHeight = "300";
            }
            break;
        case "external-popup":
            divHeight = "300";
            break;
        case "download-popup":
            divHeight = "270";
            break;
        default: break;
    }

    return divHeight;
}
