function popUp(URL) {
  day = new Date();
  id = day.getTime();
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=800,height=500,left = 112,top = 70');");
}

function popUpFull(URL) {
  day = new Date();
  id = day.getTime();
  var scr_w = screen.availWidth;
  var scr_h = screen.availHeight;
  window.open(URL,'Reloaded' + id,
  'width=' + (scr_w - 10) + ',height=' + (scr_h - 60) + ', top=0, left=0,scrollbars,resizable,status')
}