// La fonction qui affiche/masque l'élément 
function bascule()
{
if(option1.checked)
{document.getElementById('projet_web').style.display="block";}
else
{document.getElementById('projet_web').style.display="none";}
}

