var timerID1;
var ancienMotCle;
var nbmotcle =0;

function showMotCle(motId, event) {
if (nbmotcle>0)  HideMotCle(ancienMotCle) ;
obj = document.getElementById(motId);
posX=event.clientX + document.body.scrollLeft; 	
posY=event.clientY + document.body.scrollTop;
obj.style.top = posY;
obj.style.left = posX;
obj.style.visibility = "visible";
ancienMotCle = motId;
nbmotcle=1;
}

function DemarrerTimer(sec, motId, timerID) { 
clearTimeout(timerID1);
timerID1=setTimeout("HideMotCle('DIV"+motId+"')",sec);
}

function ArreterTimer(timerID) { 
clearTimeout(timerID1);//motId );
}
function HideMotCle(motId) {
obj = document.getElementById(motId);
obj.style.visibility = "hidden";
}

