
function confirmation(url,Qu)
{
   var Question = confirm(Qu);
   if (Question) window.location=url;
}

function voir(id)	//affiche puis cache
{
if(document.getElementById(id).style.display == 'none')
document.getElementById(id).style.display='';
else
document.getElementById(id).style.display='none';
}
