﻿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 = "530";
            break;
        case "code-popup":
            divHeight = "300";
            break;
        case "external-popup":
            divHeight = "300";
            break;
        case "download-popup":
            divHeight = "270";
            break;     
        default : break;
    }
    
    return divHeight;
}

