﻿function OpenGallery(param)
{
    window.open("../_control/gallery.aspx?" + param, "Gallery", "location=no,width=650,height=650,top=0,left=0")
}

function ResizeWindow(e)
{
    var WidthOfTable = document.getElementById(e).offsetWidth + 10;//+ 10 for scrollbar
    var HeightOfTable = document.getElementById(e).offsetHeight;
        
    window.resizeTo(WidthOfTable, HeightOfTable);
}
