//mode est le mode pour écrire le titre. Valeurs possibles : plusdinfo, commentcamarche
function switchTips(info, mode)
{
	var divid	= "div" + info;
	var aid		= "a" + info;
	
	if (document.getElementById(divid).style.display == 'block')
	{
		document.getElementById(divid).style.display = 'none';
		if (mode == 'plusdinfo') document.getElementById(aid).innerHTML = 'Plus d\'informations';
	}
	else
	{
		document.getElementById(divid).style.display = 'block';
		if (mode == 'plusdinfo') document.getElementById(aid).innerHTML = 'Moins d\'informations';
	}
}

function closeTips(info, mode)
{
	var divid	= "div" + info;
	var aid		= "a" + info;

	document.getElementById(divid).style.display = 'none';
	if (mode == 'plusdinfo') document.getElementById(aid).innerHTML = 'Plus d\'informations';
}