var x = 0;
var y = 0;

if (document.getElementById)
{
if(navigator.appName.substring(0,3) == "Net")
document.captureEvents(Event.ONMOUSEMOVE);
document.onmousemove = Pos_Souris;
}

function Pos_Souris(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+10;
document.getElementById("detail").style.top = y+10;
}


function details_lien(msg)
{

var description ="<table border=0 cellpadding=0 cellspacing=0 class=bordure><tr><td><table width=100% border=0 cellpadding=0 cellspacing=1><tr><td class=tabClair><span class=moyen>"+msg+"</span></td></tr></table></td></tr></table>";

    if (document.getElementById) {
    document.getElementById("detail").innerHTML = description;
    document.getElementById("detail").style.visibility = "visible";
    }

}

function efface()
{
    if (document.getElementById) {
    document.getElementById("detail").innerHTML = "";
    document.getElementById("detail").style.visibility = "hidden";
    }
}