
// Confirm deletion
function confirmClick(question) {
   var agree=confirm(question);
   if (agree)
       return true ;
   else
       return false ;
}


// Open a page in new window

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