<!--
//FONCTION POPUP LINKEO POUR RAPPEL IMMEDIAT
function linkeoPopup(url) {
window.open(url,"popuplinkeo",'width=400,height=350,top=5,left=5,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=1');
}

//FONCTION PERMETTANT DE CHANGER D'ONGLET DANS LES PAGES PRODUITS
function onglets(nom,nombre) {
	for(i=1;i<=nombre;i++) {
		if(i!=nom) {
			document.getElementById('produit-principal-'+i).style.display="none";
		}
		else {
			document.getElementById('produit-principal-'+i).style.display="block";
		}
	}
}
//FONCTION PERMETTANT DE VISUALISER LES PHOTOS DANS LES PAGES PRODUITS
function photos(nom,nombre) {
	for(i=1;i<=nombre;i++) {
		if(i!=nom) {
			document.getElementById('image-big'+i).style.display="none";
		}
		else {
			document.getElementById('image-big'+i).style.display="block";
		}
	}
}

function bascule(div,nb,total) {
	var i=0;
	for(i;i<=total;i++) {
		if(i==nb) document.getElementById(div+i).style.display = '';
		else document.getElementById(div+i).style.display = 'none';
	}
}

// FONCTION POUR AFFICHER LA SELECT DES REGIONS SI PAYS FRANCE
function affiche_regions(valeur) {
	if((valeur=='FRA1')) {
		//alert('France');
		document.getElementById('select_regions').style.visibility='visible';
		document.getElementById('select_regions').style.display='';
		document.getElementById('select_regions_intitule').style.display='';
	}
	else {
		//alert('pas France');
		document.getElementById('select_regions').style.visibility='hidden';
		document.getElementById('select_regions').style.display='none';
		document.getElementById('select_regions_intitule').style.display='none';
		document.getElementById('multidepartement').value='0';
	}
}

-->