// JavaScript Document
document.write('<DIV ID="detail" style="position: absolute;visibility: hidden"></DIV>');
 var x = 0;
 var y = 0;
 if (document.getElementById){
    if(navigator.appName.substring(0,3) == "Net")
	document.captureEvents(Event.MOUSEMOVE);
	document.onmousemove = PosSouris;
 }

 function PosSouris(e) {
     x = (navigator.appName.substring(0,3) == "Net") ? e.pageX : event.x+document.body.scrollLeft;
	 y = (navigator.appName.substring(0,3) == "Net") ? e.pageY : event.y+document.body.scrollTop;
	document.getElementById("detail").style.left = x-100;
    document.getElementById("detail").style.top = y+20;
 }
 
 function AfficheDescription(msg){
  var description ='<table style="border:outset" width=200 border=0 cellpadding=0 cellspacing=1 bgcolor=#CC0000><tr><td><table width=100% border=0 cellpadding=0 cellspacing=3 bgcolor=#FFFFFF><tr><td width=100% align=center><font size=1 face=Verdana, Arial, Helvetica, sans-serif>'+msg+'</font></td></tr></table></td></tr></table>';
  if (document.getElementById){
          document.getElementById("detail").innerHTML = description;
	      document.getElementById("detail").style.visibility = "visible";
       }
  }
  
  function EffaceDescription(){
      if (document.getElementById){
          document.getElementById("detail").innerHTML = "";
	      document.getElementById("detail").style.visibility = "hidden";
	  }	  
  }

