﻿function popup(theURL, theName, theWidth, theHeight) {
    var theStuff = 'width=' + theWidth + ',height=' + theHeight;
    theStuff += ',scrollbars=auto';

    var theWindow = window.open(theURL, theName, theStuff);
    theWindow.opener = self;
    theWindow.focus();
}
function openWindow(URL, width, height) {
    return popup(URL, '', width, height);
}
function emailPopUp(URL) {
    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=300,height=420,left = 680,top = 285');");
}