<!-- 
function findObj(n) { 
	var i,x;
	var d=document; 
	if(!(x=d[n])&&d.all)
		x=d.all[n]; 
	if(!x && d.getElementById)
		x=d.getElementById(n); 
	return x; 
} 

function getBounds(obj){ 
	bounds=[0,0,0,0];// x y witdh height 
	bounds[2]=obj.offsetWidth; 
	bounds[3]=obj.offsetHeight; 
	while(obj.tagName!='BODY'){ 
		bounds[0]+=obj.offsetLeft; 
		bounds[1]+=obj.offsetTop; 
    		if(!obj.offsetParent) break; 
				obj=obj.offsetParent; 
	} 
	return bounds 
} 

function placeKalc(obj,Kalc) { 
	Kalc=findObj(Kalc); 
	Kalc.style.visibility='visible'; 
	var B=getBounds(obj); 
	/*** 
	B[0] = position x du picto 
	B[1] = position y du picto 
	B[2] = largeur du picto 
	B[3] = hauteur du picto 
	Ex : placer le calque en dessous du picto 
	***/ 
	Kalc.style.left=B[0]+15; 
	Kalc.style.top=B[1]+B[3]; 
	/*** 
	Ex : placer le calque en bas et à droite (+10 px) du picto 
	Kalc.style.left=B[0]+B[2]+10; 
	Kalc.style.top=B[1]+B[3]; 
	***/ 
} 
//--> 