function popUp(URL, width, height) {
    var left = ((screen.width) / 2) - (width / 2);
    var top = ((screen.height) / 2) - (height / 2);
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + "');");
}
        
function picturePopUp(URL, width, height) {
    var left = ((screen.width) / 2) - (width / 2);
    var top = ((screen.height) / 2) - (height / 2);
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + "');");
}

function picturePop(URL) {
    var width = 75;
    var height = 75;
    var left = (screen.width / 2) - (width / 2);
    var top = (screen.height / 2) - (height / 2);
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open('/ATOC/Pictures/PicturePopUp.asp?URL=' + URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + "');");
}
