// Little script to confirm before deleting a item
function del_confirm(id, go_url, go_back)
  {
  var r=confirm("Delete item: " + id)
  if (r==true)
    {
    document.location.href=go_url+id
    }
  else
    {
    // We not delete the item and redirect to the index
    document.location.href=go_back
    }
  }
 
