function showhide(element,show){
	cible = document.getElementById(element).style;
	if(show == 1)
		cible.display = '';
	else
		cible.display = 'none';
}