﻿var popupWindow = '';

function OpenPopup(url, portrait) {


    if (!popupWindow || popupWindow.closed) {
        if (portrait)
            popupWindow = window.open(url, 'popupwindow', 'width=254,height=330,resizable=0');
        else
            popupWindow = window.open(url, 'popupwindow', 'width=330,height=254,resizable=0');


    }
    else {
        if (portrait)
            popupWindow.resizeTo(254, 420);
        else
            popupWindow.resizeTo(330, 334);
    }

    popupWindow.document.clear();
    popupWindow.focus();
    popupWindow.document.writeln('<html><head><title>Photo<\/title><\/head><body bgcolor=\"black\"><center>');
    popupWindow.document.writeln('<img src=\"' + url + '\" alt=\"\" \/>');
    popupWindow.document.writeln('<\/center><\/html>');
    popupWindow.document.close();
    popupWindow.focus();

}


function ClosePopup() {
    if (popupWindow.location && !popupWindow.closed) {
        popupWindow.close();
    }
}