﻿function showLightbox(bool) {
    
    if (bool == true) {
        document.getElementById("divLightBox").style.display = "block";
        document.getElementById("divLightBoxContent").style.display = "block";
    }
    else {
        document.getElementById("divLightBox").style.display = "none";
        document.getElementById("divLightBoxContent").style.display = "none";
        //document.getElementById("divLightBoxInnerContent").innerHTML = "";
        
    }
}
