function afficheElement(nom)
{
	document.getElementById(nom).style.display='block';
}

function visiElement(nom)
{
	if(document.getElementById(nom).style.display=="block")
		document.getElementById(nom).style.display="none";
	else
		document.getElementById(nom).style.display="block";
}
function redirection(url)
{
	window.location.href=url;
}
function verifCgv()
{
	if(!document.getElementById('accepteCgv').checked)
		alert("Vous devez accepter les conditions generales de vente pour valider votre commande !");
	else
		redirection('index.php?p=panier&verifCom=1')
}
function verifMontant(id)
{
	if(document.getElementById('montantValide'+id).value!=0 && (document.getElementById('montantValide'+id).value-document.getElementById('montantTotal'+id).value)<=0)
		document.getElementById('bttValider'+id).disabled=false;
	else
		document.getElementById('bttValider'+id).disabled=true;
}
function verifAnnulation(nb)
{
	if(confirm("!!!ATTENTION!!! Annuler cette commande est definitf?"))
		document.getElementById('formActAnnulation'+nb).submit();
}
function VerifPays(nom){
	document.getElementById("div_siret").style.visibility = 'hidden';
	if(nom == 'FR' || nom == 'GF' || nom == 'TF'){
		document.getElementById("div_siret").style.visibility = 'visible';
		Alerte("Attention, pour l'exemption de TVA, veuillez imp&eacute;rativement indiquer votre N&deg; de TVA Intracommunautaire, sauf si vous &ecirc;tes en micro-entreprise, bien s&ucirc;r.");
	}	
}
function afficheElementContact(nom,valeur)
{
	document.getElementById(nom).style.visibility = 'hidden';
	if(valeur == 'Autres'){
		document.getElementById(nom).style.visibility = 'visible';
	}
}
function Alerte( txt_){
  //-- Recup si deja cree
  var O_Div = document.getElementById( 'D_ALERT');
  //-- Creation si non existante
  if( !O_Div){
    O_Div = document.createElement('DIV');
    O_Div.id = 'D_ALERT';
    O_Div.style.display = 'none';
    document.body.appendChild( O_Div);
  }
  //-- Affectation du texte
  O_Div.innerHTML = txt_;
  //-- l'alert javascript
  alert( O_Div.innerHTML);
  //-- peut servir on ne sait jamais
  return( false);
}
function affichage_popup(nom_de_la_page, nom_interne_de_la_fenetre,height,width)
{
window.open (nom_de_la_page, nom_interne_de_la_fenetre, config='height='+height+', width='+width+', toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no')
}

function envoi_form(nomForm) {
	var qte1=parseInt(document.getElementById("qte").value);
	var qte2=parseInt(document.getElementById("qte_mini").value);
	if ((qte1)>=(qte2)) {
		alert('Cliquez sur OK et patientez pendant que le panier se met à jour, Merci');
document.forms[nomForm].submit();
 setTimeout("redirige_panier();",1000);
 setTimeout("close_fenetre();",1500);


	}
	else {
	alert('Cette reference ne peut etre vendu qu\'avec une quantité minimale de '+document.getElementById("qte_mini").value);	
	}

}
function close_fenetre() {
	self.close();
}
function redirige_panier() {
window.opener.location.href='../index.php?p=panier';	
}
