var posX=0;posY=0;
var xOffset=-15;yOffset=15;
var hoverwidth = 250;


function hoverLot(text) {
	xOffset=-15;
	yOffset=15;
	hoverwidth = 250;
	AffBulle("<TABLE border=0 cellspacing=1 bgcolor=\"#FFAD5A\"><TR><TD><TABLE border=0 cellspacing=5  bgcolor=\"#FFFFFF\"><TR><TD><span class=\"hoverlot\">"+text+"</SPAN></TD></TR></TABLE></TD></TR></TABLE>");
}

function hoverLotImg(text, image, width, height) {
	xOffset=-15;
	yOffset=15;
	hoverwidth = 400;
	AffBulle("<TABLE border=0 cellspacing=1 bgcolor=\"#FFAD5A\"><TR><TD><TABLE border=0 cellspacing=5  bgcolor=\"#FFFFFF\"><TR><TD><img src=\""+image+"\" width=\""+width+"\" height=\""+height+"\"></TD><TD><span class=\"hoverlot\">"+text+"</SPAN></TD></TR></TABLE></TD></TR></TABLE>");

}


function update() {

  var finalPosX=posX-xOffset;
  //if (finalPosX<0) finalPosX=0;
  if (document.layers) {
    document.layers["bulle"].top=posY+yOffset;
    document.layers["bulle"].left=finalPosX;
  }
  if (document.all) {
    document.all["bulle"].style.top=posY+yOffset;
    document.all["bulle"].style.left=finalPosX;//f.x-xOffset;
  }
  else if (document.getElementById) {
    document.getElementById("bulle").style.top=posY+yOffset;
    document.getElementById("bulle").style.left=finalPosX;
  }

}



function AffBulle(contenu) {
  
  var finalPosX=posX-xOffset;
  //if (finalPosX<0) finalPosX=0;
  if (document.layers) {
    document.layers["bulle"].document.write(contenu);
    document.layers["bulle"].document.close();
    document.layers["bulle"].top=posY+yOffset;
    document.layers["bulle"].left=finalPosX;
    document.layers["bulle"].visibility="show";
    document.layers["bulle"].width=hoverwidth;
  }
  if (document.all) {
    //var f=window.event;
    //doc=document.body.scrollTop;
    bulle.innerHTML=contenu;
    document.all["bulle"].style.top=posY+yOffset;
    document.all["bulle"].style.left=finalPosX;//f.x-xOffset;
    document.all["bulle"].style.visibility="visible";
    document.all["bulle"].style.width=hoverwidth;
  }
  //modif CL 09/2001 - NS6 : celui-ci ne supporte plus document.layers mais document.getElementById
  else if (document.getElementById) {
    document.getElementById("bulle").innerHTML=contenu;
    document.getElementById("bulle").style.top=posY+yOffset;
    document.getElementById("bulle").style.left=finalPosX;
    document.getElementById("bulle").style.visibility="visible";
    document.getElementById("bulle").style.width=hoverwidth;
  }
}
function getMousePos(e) {
  if (document.all) {
  posX=event.x+document.body.scrollLeft; //modifs CL 09/2001 - IE : regrouper l'évènement
  posY=event.y+document.body.scrollTop;
  }
  else {
  posX=e.pageX; //modifs CL 09/2001 - NS6 : celui-ci ne supporte pas e.x et e.y
  posY=e.pageY; 
  }
}
function HideBulle() {
	if (document.layers) {document.layers["bulle"].visibility="hide";}
	if (document.all) {document.all["bulle"].style.visibility="hidden";}
	else if (document.getElementById){document.getElementById("bulle").style.visibility="hidden";}
}

function InitBulle() {
	if (document.layers) {
		window.captureEvents(Event.MOUSEMOVE);window.onMouseMove=getMousePos;
		document.write("<LAYER name='bulle' top=0 left=0 visibility='hide'></LAYER>");
	}
	if (document.all) {
		document.write("<DIV id='bulle' style='position:absolute;top:0;left:0;visibility:hidden'></DIV>");
		document.onmousemove=getMousePos;
	}
	//modif CL 09/2001 - NS6 : celui-ci ne supporte plus document.layers mais document.getElementById
	else if (document.getElementById) {
	        document.onmousemove=getMousePos;
	        document.write("<DIV id='bulle' style='position:absolute;top:0;left:0;visibility:hidden'></DIV>");
	}
}

