			function PopUpCentrer(fenetre,page,largeur,hauteur,options) {
				window.open(page,fenetre,"width="+largeur+",height="+hauteur+","+options);
			}
			function PopUpImage(img,titulo){ title=titulo;
				w=open("",'image','width=400,height=400,toolbar=no,scrollbars=no,resizable=no,location=no');
				w.document.write("<html><head><title>"+title+"</title></head>");
				w.document.write("<script type='text/javascript' language='javascript'>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+30,document.images[0].height+60); window.focus();} else { setTimeout('checksize()',250) } }</"+"script>");
				w.document.write("<body onload='checksize()' onclick='action()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
				w.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><tr>");
				w.document.write("<td valign='middle' align='center'><IMG src='"+img+"' border='0' alt='"+title+"' title='"+title+"'>");
				w.document.write("</td></tr></table>");
				w.document.write("</body></html>");
				w.document.close();
			}
			function VerifCommande02() {
				if (document.Commande02.Nom.value == "") {
					alert("Veuillez renseigner votre nom.");
					document.Commande02.Nom.focus();
					return false;
				}
				if (document.Commande02.Prenom.value == "") {
					alert("Veuillez renseigner votre pr\351nom.");
					document.Commande02.Prenom.focus();
					return false;
				}
				if (document.Commande02.Adresse.value == "") {
					alert("Veuillez renseigner votre adresse.");
					document.Commande02.Adresse.focus();
					return false;
				}
				if (document.Commande02.CodePostal.value == "") {
					alert("Veuillez renseigner votre code postal.");
					document.Commande02.CodePostal.focus();
					return false;
				}
				if (document.Commande02.Ville.value == "") {
					alert("Veuillez renseigner votre ville.");
					document.Commande02.Ville.focus();
					return false;
				}
				if (document.Commande02.Email.value == "") {
					alert("Veuillez renseigner votre email.");
					document.Commande02.Email.focus();
					return false;
				}
				else if (document.Commande02.Email.value.indexOf ('@',0) == -1 || document.Commande02.Email.value.indexOf ('.',0) == -1){
					alert("Veuillez renseigner un email valide.");
					document.Commande02.Email.focus();
					return false;
				}
				if ( (document.Commande02.LivraisonNom.value == "") && (document.Commande02.LivraisonDifferente.checked == true) ) {
					alert("Veuillez renseigner le nom du destinataire de la livraison.");
					document.Commande02.LivraisonNom.focus();
					return false;
				}
				if ( (document.Commande02.LivraisonPrenom.value == "") && (document.Commande02.LivraisonDifferente.checked == true) ) {
					alert("Veuillez renseigner le pr\351nom du destinataire de la livraison.");
					document.Commande02.LivraisonPrenom.focus();
					return false;
				}
				if ( (document.Commande02.LivraisonAdresse.value == "") && (document.Commande02.LivraisonDifferente.checked == true) ) {
					alert("Veuillez renseigner l'adresse de livraison.");
					document.Commande02.LivraisonAdresse.focus();
					return false;
				}
				if ( (document.Commande02.LivraisonCodePostal.value == "") && (document.Commande02.LivraisonDifferente.checked == true) ) {
					alert("Veuillez renseigner le code postal de livraison.");
					document.Commande02.LivraisonCodePostal.focus();
					return false;
				}
				if ( (document.Commande02.LivraisonVille.value == "") && (document.Commande02.LivraisonDifferente.checked == true) ) {
					alert("Veuillez renseigner la ville de livraison.");
					document.Commande02.LivraisonVille.focus();
					return false;
				}
				if ( (document.Commande02.LivraisonPaysCode.value == "") && (document.Commande02.LivraisonDifferente.checked == true) ) {
					alert("Veuillez renseigner le pays de livraison.");
					document.Commande02.LivraisonPaysCode.focus();
					return false;
				}
				
			}
			function changeStatusElement(spanObject) {
				if (document.getElementById(spanObject).style.display == 'none') {
					document.getElementById(spanObject).style.display = 'block';
				} else {
					document.getElementById(spanObject).style.display = 'none';
				}
			}