function verifyDelete(display_msg,URL){
    msg = display_msg;
    //all we have to do is return the return value of the confirm() method
    return confirm(msg);
    }
function toggleVisible(id) {
  var item = document.getElementById(id);
  var value = item.style.display ? '' : 'none';
  item.style.display = value;
}