
function confirm_del( url )
{
  input_box=confirm("Do you realy wan't to delete this entry?");
  if (input_box==true)
    {
      // Output when OK is clicked
      location.href=url;
    }
}

