// JavaScript Document
// Created by Becker Design Studio  -  February 10, 2009

function popUp(URL, wwidth, wheight) {
day = new Date();
id = day.getTime();
swidth = screen.width * .5;
sheight = screen.height * .5;
newx = swidth - (wwidth * .5);
newy = sheight - (wheight * .5);
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + wwidth + ",height=" + wheight + ",left=" + newx + ",top=" + newy + "');");
/*alert("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + wwidth + ",height=" + wheight + ",left=" + newx + ",top=" + newy + "');");

wwidth = 500;
wheight = 400;
*/
}

/*<A HREF="javascript:popUp('privacy.html','500','400')">Open the Popup Window</A>*/
