// JavaScript Document
function AffBoxLivraison()
{
	if(document.getElementById('I_ChxLiv').checked == true)
	{
		document.getElementById('InscriptionBoxLivraison').style.display = 'block';
	}
	else
	{
		document.getElementById('InscriptionBoxLivraison').style.display = 'none';
	}
}

function WritePersonnalInfo()
{
	var prenom = document.getElementById('I_Prenom').value;
	document.getElementById('I_FPrenom').value = prenom;
	
	var nom = document.getElementById('I_Nom').value;
	document.getElementById('I_FNom').value = nom;	
	
}
