﻿// JScript File

function galleryPopUp(DivId, imageFile)
{
    var Div = document.getElementById(DivId);
    var popUp = document.getElementById("ImagePopUp");
    var popUpImage = document.getElementById("popUpImage");
    var curLeft = 0;
    var curTop = 0;
    curLeft = Div.offsetParent.offsetLeft;
    curTop = Div.offsetParent.offsetTop;
    curLeft = curLeft + "px";
    curTop = curTop + "px";
    popUp.style.marginTop = curTop;
    popUp.style.marginLeft = curLeft;
    popUp.style.display = "inline";
    popUpImage.src = "/Gallery/Images/" + imageFile;
}
function galleryClose()
{
    var popUp = document.getElementById("ImagePopUp")
    popUp.style.display = "none";
}