﻿<!--

function showPopup(pageToLoad, winName) {
    var xposition = 100;
    var yposition = 100;
    var width = 380;
    var height = 340;
    args = "width=" + width + "," + "height=" + height + "," + "location=1," + "menubar=0," + "resizable=1," + "scrollbars=1," + "status=1," + "titlebar=0," + "toolbar=0," + "hotkeys=0," + "screenx=" + xposition + "," + "screeny=" + yposition + "," + "left=" + xposition + "," + "top=" + yposition;
    var new_window = window.open(pageToLoad, winName, args);
}

function popUp(url, width, height, left, top) {
day = new Date();
id = day.getTime();
args = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0," + "width=" + width + "," + "height=" + height + "," + "left=" + left + "," + "top=" + top;
eval("page" + id + " = window.open(url, '" + id + "', '" + args + "');");
}

//-->

