﻿function ViewLargeImage(imgSrc, imgWidth, imgHeight)
{
    window.open("EnlargeImage.aspx?imgSrc=" + imgSrc + "&imgWidth=" + imgWidth + "&imgHeight=" + imgHeight, "image", "fullscreen=no,location=no,toolbar=no,menubar=no,width=" + (Number(imgWidth) + 25) + ",height=" + (Number(imgHeight) + 25));
}