
  function ConfirmDelete(url) {

    if(confirm('Proceed with Deletion? Warning. Cannot be Reversed!')) {

    document.location.href = url;

    }

  }