function confirmDel(url) {
  var c = confirm("Are you sure you want to DELETE this item?");
  if (c && url != "") window.location = (url);
}
function clear(elm){
  while(elm.hasChildNodes())elm.removeChild(elm.firstChild);
}



