function toggle(id)
{
   var obj = document.getElementById(id);
   if (!obj) return;
   if ('none' == obj.style.display)
      obj.style.display = 'block';
   else
      obj.style.display = 'none';
}

function change(to)
{
   document.hUpdate.date.value = to;
}
function resume()
{
   document.hUpdate.reset();
}
