// JavaScript Document
function popUpWindow(URL, width, height, left, top) {
  day = new Date();
  id = day.getTime();
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width="+width+",height="+height+",left = "+left+",top = "+top+"');");
}
function confirm_delete() {
    if (confirm("Are you sure you want to delete this item? pressing OK will delete!")){
      return true
    }
    return false
}

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

