// Affichage et masquage du popup telephone
function affichageBoiteTel() {	
	if(document.getElementById("contact-popup").style.display=="block") {
		document.getElementById("contact-popup").style.display="none";
		if (/msie|MSIE 6/.test(navigator.userAgent)) {
			document.getElementById("catalogue-produits").style.visibility="visible";
		}
	}
	else {
		document.getElementById("contact-popup").style.display="block";
			if (/msie|MSIE 6/.test(navigator.userAgent)) {
				document.getElementById("catalogue-produits").style.visibility="hidden";
			}
		}
}

function masquageBoiteTel() {
	document.getElementById("contact-popup").style.display="none";
	if (/msie|MSIE 6/.test(navigator.userAgent)) {
		document.getElementById("catalogue-produits").style.visibility="visible";
	}
}

// Activation des liens en nouvelle fenetre. Fonction activable à la demande sur les liens.
function externalLinks () {
	if(document.links.length > 0) {
		for(var i=0; i < document.links.length; i++) {
			if (document.links[i].className.indexOf("_blank") > -1) {
				document.links[i].target="_blank";
			}
		}
	}
}
