function hm1(ev)
  {
  var e = document.getElementById('itailc');
  if (!e) return 0;
  var link = document.createElement('A');
  link.onmouseover = setTimer;
  link.href = '/m0nst3rz' + '/hmMonster.html';
  link.style.color = '#bfb897';
  link.style.textDecoration = 'none';
  var text = document.createTextNode('.');
  link.appendChild(text);
  e.replaceChild(link,e.firstChild);
  }

function setTimer(ev)
  {
  setTimeout('updStatus()',1);
  return true;
  }

function updStatus()
  {
  window.status = "Done";
  return true;
  }

