var helpVisible;//contiendra le dernier div de help rend visible

function fShowHelp(quel, e){//montre le help
	dv=safeFindObj('help' + quel);
	dv.style.visibility='visible';
	
	_xp = getXMouse(e)+5;
	_yp = getYMouse(e)+5;
	
	dv.style.left = _xp + 'px';
	dv.style.top = _yp + 'px';
	
	//alert(dv.style.left);
	helpVisible = dv;
	return;
}

function fHideHelp(){
	helpVisible.style.visibility="hidden";
	return;
}
