function m (object, color) { object.style.backgroundColor=color; }
function delete_confirm(obj_href,return_url)
{
  var truthBeTold = confirm('Are you sure?');

  if (truthBeTold)
  {
    obj_href.href = return_url;
  }
}