<!--
function regPopout(id,x,y) {
  var el = document.getElementById(id);
  var ela = document.getElementById('a' + id);
  el.pop_show = function() {
    this.style.left = x + 'px';
    this.style.top = y + 'px';
    this.style.display = 'block';
  };
  el.pop_hold = function() {
    if (!this.pop_t_id) return;
    clearTimeout(this.pop_t_id);
    this.pop_t_id = null;
  };
  el.pop_hide = function() {
    if (this.pop_t_id) clearTimeout(this.pop_t_id);
    this.pop_t_id = setTimeout(function() { el.style.display = 'none'; }, 500);
  };
  el.onmousemove = function() { el.pop_hold(); };
  el.onclick = function() { el.pop_hide(); }
  el.onmouseout = function() { el.pop_hide(); };
  ela.onmouseover = function() { el.pop_show(); };
  ela.onmousemove = function() { el.pop_hold(); };
  ela.onclick = function() { el.pop_hide(); }
  ela.onmouseout = function() { el.pop_hide(); }
}
-->
