function GoCommande(){
	$("#buttonCommanderPanier").css('visibility','hidden');
	$('#monPanierDiv').dialog('disable');
	if(document.getElementById('coordEtCGVOK').checked==true){
		$.post('/commande/commande_transaction.php',$("#commandeForm").serialize(), function(data) {
			var statusObject=JSON.parse(data);
			if(statusObject.status=="ok"){	
				//
				var tmpform=document.createElement("form");
				tmpform.action="https://systempay.cyberpluspaiement.com/vads-payment/"
				tmpform.method="POST"
				tmpform.enctype="multipart/form-data";
				for (var i in statusObject.tansComForm){
					var tmpElement=document.createElement("input");
					tmpElement.type="hidden";
					tmpElement.setAttribute('name',(statusObject.tansComForm[i])['n']);
					tmpElement.setAttribute('value',(statusObject.tansComForm[i])['v']);
					
					tmpform.appendChild(tmpElement); 
				}
				document.body.appendChild(tmpform)
				tmpform.submit();
			}
		});
	}else{
		document.getElementById('coordEtCGVOKDiv').style.background="#f99";
		ShowBodyLabelMessage("Erreur CGV",3000)	;
		$("#buttonCommanderPanier").css('visibility','visible');
		$('#monPanierDiv').dialog('enable');
	}
}//2012© Copyright Menta Solutions. All rights reserved.

