﻿function show(id,valeur)
{
	document.getElementById(id).innerHTML=valeur;
	document.getElementById(id).style.visibility='visible';
}

function hide(id)
{
	document.getElementById(id).style.visibility='hidden';
}
