function windowpopup(URL, height, width, resizeable, scrollbar) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=' + scrollbar + ',location=0,statusbar=0,menubar=0,resizable=' + resizeable + ',width=' + width + ',height=' + height + ',directories=0');");
}
function toolbarpopup(URL, height, width, resizeable, scrollbar, toolbar) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', ',toolbar=' + toolbar + ',scrollbars=' + scrollbar + ',location=0,statusbar=0,menubar=0,resizable=' + resizeable + ',width=' + width + ',height=' + height + ',directories=0');");
}
function locationpopup(URL, height, width, location, resizeable, scrollbar, toolbar) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', ',toolbar=' + toolbar + ',scrollbars=' + scrollbar + ',location=' + location + ',statusbar=0,menubar=0,resizable=' + resizeable + ',width=' + width + ',height=' + height + ',directories=0');");
}

