function displayLightbox(lightBoxDivId) {
    var lightBoxDiv = $(lightBoxDivId);
    if(lightBoxDiv!=null) {
        lightBoxDiv.style.display = "block";
        $("glassPane").style.display = "block";
    }
}
