  var over;
  function drc(text, title){
    over = document.getElementById("overDiv");
    over.innerHTML = "<TABLE WIDTH=170 CELLPADDING=0 CELLSPACING=0 bgcolor=#421636><tr><td width=170 height=16 background=images/m99.jpg style=\"color:#FFFFFF; font-size:9px; padding:3px; padding-left:20px; background-repeat:no-repeat\">"+title+"</td></tr><TR><TD><TABLE WIDTH=100% BORDER=0 CELLPADDING=6 CELLSPACING=0 BGCOLOR=\"#421636\"><TR><TD style=\"padding-left:15px;padding-right:10px;border-right:1px solid #5A2E4E; border-bottom:1px solid #5A2E4E; border-left:1px solid #5A2E4E;\"><SPAN ID=\"PST\"><FONT style=\"font-size:9px;\" COLOR=\"#FFFFFF\">"+text+"</FONT><SPAN></TD></TR></TABLE></TD></TR></TABLE>";

    over.style.display = "";
    over.style.visibility = "visible";
    over.style.top = 800 + "px";
    over.style.left = 100 + "px";
  }
  function nd(){
    over.style.display = "none";
    over.style.visibility = "hidden";
    over = 0;
  }
  window.document.onmousemove = moveOver;
  function moveOver(e){
    if(over){
      if(typeof event == "undefined"){
        over.style.left = e.clientX + 20 + document.body.scrollLeft;
        over.style.top = e.clientY + 4 + document.body.scrollTop;
      }
      else{
        over.style.left = event.x + 14 + document.body.scrollLeft;
        over.style.top = event.y + 0 + document.body.scrollTop;
      }
    }
  };