function DoNav(theUrl)
  {
  document.location.href = theUrl;
  }

function confirmDelete(delUrl) {
  if (confirm("Are you sure you want to delete"))
    document.location = delUrl;
  else
  	document.location = location.href;
}