function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=100,screenY=100,top=100,left=150')
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=650,height=400,left = 340,top = 262');");
}

