//first we will define the function that opens the window
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=400,height=250,left = 660,top = 300');");
}
//above, I defined the settings, and the function
//this goes in the head section of the page