﻿function ShowLightbox(strPageAddress, intHeight) {
    var strIframeCode = "<iframe height=\"" + intHeight + "\" width=\"660\" src=\"" + strPageAddress + "\" frameborder=\"0\" scrolling=\"auto\"></iframe>";
    $("#LightboxContent").html(strIframeCode);
    $("#LightBox").css("left", ($(window).width() / 2) - 350).css("top", parseInt(220 + document.documentElement.scrollTop)).show();
}

function HideLightbox() {
    $("#LightBox").hide();
}

function HideLightboxFromInside() {
    parent.document.getElementById('LightBox').style.display = 'none';
}

function showColor(val) {
    document.getElementById('hexval').value = val;

}
function HideSlide() {
    initSlideLeftPanel();
}
function showslide() {
    initSlideLeftPanel();
}
function hideDiv(id) {
    document.getElementById(id).style.display = 'none';
}
function showDiv(id) {
    document.getElementById(id).style.display = 'block';
}


