function popUp(URL) {
day = new Date();
id = day.getTime();
if ( URL.indexOf("live") >= 0) {
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0,width=666,height=524,left=232,top=190');");
}
else {
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=660,height=500');");
}
}