<!--
  window.onload = function() {
    // (c) 2004 dexus http://www.dexus.nl/tips/titles/ this line must stay intact.
    var e = document.createElement("div");
    e.id = "shadow";
    document.body.appendChild(e);
    var shadow = document.getElementById("shadow");
    var d = document.createElement("div");
    d.id = "tip";
    shadow.appendChild(d);
    var tip = document.getElementById("tip");
    shadow.style.position = "absolute";
    shadow.style.display = "none";
    tip.style.top = "-2px";
    tip.style.left = "-2px";
    tip.style.position = "relative";
    if (!document.all) {
      document.captureEvents(Event.MOUSEMOVE)
    }
    document.onmousemove = function(e) {
      if (shadow.style.display == "none") {
        if (document.all) {
          shadow.style.left = event.clientX + document.documentElement.scrollLeft + "px"
          shadow.style.top = event.clientY + document.documentElement.scrollTop + 21 + "px"
        } else {
          shadow.style.left = e.pageX + "px"
          shadow.style.top = e.pageY + 21 + "px"
        }
        return true;
      }
    }
    var anchors = document.links;
    for (var i=0;i<anchors.length;i++) {
      var anchor = anchors[i];
      text = anchor.title;
      if (text != "") {
        anchor.onmouseover = function() {
          text = this.title;
          text = text.replace("[br]","<br/>");
          text = text.replace("[b]","<strong>");
          text = text.replace("[/b]","</strong>");
          text = text.replace("[i]","<em>");
          text = text.replace("[/i]","</em>");
          text = text.replace("[u]","<u>");
          text = text.replace("[/u]","</u>");
          text = text.replace("[img]","<img src='");
          text = text.replace("[/img]","' alt=''/>");
          this.title = "";
          if (text != "") {
            tip.innerHTML = text;
            over = setTimeout('document.getElementById("shadow").style.display = "block";',1000);
          }
        }
        anchor.onmouseout = function() {
          clearTimeout(over);
          this.title = text;
          shadow.style.display = "none";
          tip.innerHTML = "";
        }
      }
    }
  }
//-->