function openPopup(FILE, NAME, HEIGHT, WIDTH)
{
    window.open(FILE, NAME, "menubar=no,scrollbars=yes,toolbar=no,height=" + HEIGHT + ",width=" + WIDTH);
}

function StartGallery(galleryContainerID) {

    var firstLink = document.getElementById(galleryContainerID).getElementsByTagName("a")[0];
    
    if(firstLink) {
        
        myLightbox.start(firstLink);
    }
}