  function confirmDel(message,url){
      var c = confirm(message);
      if (c){
          window.location = url;
      }
      
  }   

