﻿function ShowImage(imageSource, title) {
    var url = "/ImageViewer.aspx?Image=" + imageSource + "&Title=" + title;
    //alert(url);
    var imageViewerWindow = window.open(url, null, "scrollbars=yes,menubar=no,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,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();"