function confirmDelete(href)
{ 
  if (confirm("This item wil be permanently deleted."))
  {
     window.location = href;
  }
}
