function ExpandP(id_paragraphe)
{
    if(document.getElementById('astuce_'+id_paragraphe).style.display=='none')
		document.getElementById('astuce_'+id_paragraphe).style.display='';
	else
		document.getElementById('astuce_'+id_paragraphe).style.display='none';
}
