﻿function ShowImage(imageSource, title) {
    var url = "/ImageViewer.aspx?Image=" + imageSource + "&Title=" + title;
    //alert(url);
    var imageViewerWindow = window.open(url, null, "scrollbars=yes,menubar=no,left=10,top=10,height=500,width=600,resizable=no,toolbar=no,location=no,status=no");
    //imageViewerWindow.moveTo(100, 100);
}

function ShowPopup(url, width, height) {
    var popupWindow = window.open(url, null, "scrollbars=no,menubar=no, 'left=10,top=10, height=" + height + ", width=" + width + ",resizable=no,toolbar=no,location=no,status=no");
    //popupWindow.moveTo(100, 100);
}

function ShowScrollablePopup(url, width, height) {
    var popupWindow = window.open(url, null, "scrollbars=yes,menubar=no, 'left=10,top=10, height=" + height + ", width=" + width + ",resizable=no,toolbar=no,location=no,status=no");
    //popupWindow.moveTo(100, 100);
}

function refreshParent() {
    alert("test");
    window.opener.location.href = window.opener.location.href;

    if (window.opener.progressWindow) {
        window.opener.progressWindow.close()
    }
    window.close();
}

//onunload="opener.location.reload();"