function ConfirmDelete(url) {
	if (confirm("Are you sure you want to delete this item?")) {
    document.location = url;
  }
}