
function confirmDelete(aLink , aMessage)
{
  var r=confirm(aMessage)
  if (r==true)
  {
    window.location.href=aLink;
  }
}
