// JavaScript Document

function imprimer_bon_de_commande()
{
	if (confirm("Etes vous sur de vouloir lancer l'impression du bon de commande?"))
	{
		document.getElementById('button_imprimer_bdc').style.display = "none";
		window.print();
		window.close();
	}
}

function check_submit_cmd_cb()
{
	if (document.getElementById('check_adresse').checked != true)
	{
		document.getElementById('nom_l').value = "Nom livraison";
		document.getElementById('prenom_l').value = "Prenom livraison";
		document.getElementById('ville_l').value = "Ville livraison";
		document.getElementById('adresse_l').value = "Adresse Livraison";
		document.getElementById('code_postal_l').value = "00000";
	}
}

function aff_adresse()
{
	if (document.getElementById('check_adresse').checked == true)
		document.getElementById('commande_cb_livraison').style.display = 'block';
	else
		document.getElementById('commande_cb_livraison').style.display = 'none';
}

function ouvre_bdc()
{
	window.open('bon_commande.php',"BonDeCommande",'height=875,width=520,toolbar=no,menubar=yes,scrollbars=no,resizable=no,location=no,directories=no,status=no');
}


function zoom_cloud(id)
{
	if (document.getElementById("zoom_article").innerHTML != '<img src="' + id + '" alt="images" width="500" height="500" />')
		document.getElementById("zoom_article").innerHTML = '<div onclick="$(\'#zoom_article\').fadeOut(\'fast\');" id="fermer_zoom" class="color3 texte2">fermer</div><img src="' + id + '" alt="images" width="500" height="500" />';
	$("#zoom_article").fadeIn("fast");
}
