// JavaScript Document

function show(element,element2,valeur)
{
	var choix = document.getElementById(element).style;
	var choix2 = document.getElementById(element2).style;
	
	if(valeur == 1)
	{
		choix.display = 'block';
	
		choix2.display = 'none';
	}
	else
	if(valeur == 2)
	{
		choix.display = 'none';
	
		choix2.display = 'none';
	}
}
