// JavaScript Document
function ChangePayment(IdAd,IdPad){
	//alert(IdAd);
	var	nbAdresse=document.getElementById('nbMoyenPaiement').value;
	for (indice=1; indice <= nbAdresse; indice++){
		//alert("i"+indice);
	document.getElementById(IdAd+indice).checked=false;
			document.getElementById(IdAd+indice).disabled=false;
		document.getElementById(IdPad+indice).className="payment_actif";
	}
}
function ChoisirPayment(PaiementChoisi){
		jQuery('.moyen_de_paiement li').removeClass("paiement_actif");									
		jQuery('#'+PaiementChoisi).parent().addClass("paiement_actif");
}

function testFormPaiement(){
	var retour_paiement = true;
	jQuery('.erreur').hide();
	if( jQuery('.moyen_de_paiement :checked').size() == 0) {
		retour_paiement = false;
		jQuery('.erreur').html('Veuillez choisir un mode paiement.');
		jQuery('.erreur').show();
	}
	return retour_paiement;
	
}