//Javascript document
function popUp(URL) {
day = new Date();
id = day.getTime();
width=720;
height=550;
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,status=0,menubar=1,width="+width+",height="+height+",left=150,top=0');");
}
