﻿function confirm_delete()
{
  if (confirm("Are you sure you want to delete this item?")==true)
    return true;
  else
    return false;
}

function testalert()
{
    alert("hitting it");
}
