	var infos_pilier = new Array;
	var infos_navig = new Array;
	
	function fncInfosPilier(item)
	{
		document.getElementById("infos_pilier").innerHTML = infos_pilier[item];
		if(infos_pilier[item]!="")
		{
			document.getElementById("infos_image1").style.visibility = "visible";
			document.getElementById("infos_image2").style.visibility = "visible";
		}
		else
		{
			document.getElementById("infos_image1").style.visibility = "hidden";
			document.getElementById("infos_image2").style.visibility = "hidden";
		}
	}


	function fncInfosNavig(item)
	{
		document.getElementById("infos_navig").innerHTML = infos_navig[item];
		if(infos_navig[item]!="")
		{
			document.getElementById("infos_navig1").style.visibility = "visible";
		}
		else
		{
			document.getElementById("infos_navig1").style.visibility = "hidden";
		}
	}


	function fncInfosEnBas(texte)
	{
		document.getElementById("infos_bas").innerHTML = texte;
	}


	function modifLumiere(image, alpha)
	{
		var doc = document.getElementById(image);
		if(doc)
		{
			// code pour IE
			if(document.all) doc.filters.alpha.opacity = alpha;

			// code pour mozilla
			else doc.setAttribute("style", "-moz-opacity:" + alpha/100);
		}
	}

	function popupTab(page) { window.open(page, "tableau","fullscreen"); }


	// interdire le clic droit
	function clicie() {
		// Fonction de détection pour Internet Explorer
		if ((event.button==2)||(event.button==3)) {
			alert("Copyright Florent Maussion - All rights reserved.");
		}
	}
	function clicns(e){
		// Fonction pour Netscape
		if(e.which==3){
			alert("Copyright Florent Maussion - All rights reserved.");
			return false;
		}
	}


	if (document.all) {	document.onmousedown=clicie;}
	if (document.layers) {document.captureEvents(Event.MOUSEDOWN); document.onmousedown = clicns;}
	if (window.sidebar) {document.captureEvents(Event.MOUSEDOWN); document.onmousedown = clicns;}


	function agrandir(img_src, larg, haut)
	{
		//w = window.open("", "doc", "toolbars=no,statusbar=no");
		w = window.open("", "doc", "fullscreen");
		w.document.write("<html><head><title>Florent MAUSSION</title>");
		w.document.write("<link href=\"florent.css\" rel=\"stylesheet\" type=\"text/css\" />");
		w.document.write("<meta http-equiv=\"imagetoolbar\" content=\"no\" />");
		w.document.write("</head><body>");
		w.document.write("<table align=\"center\" height=\"100%\">");
		w.document.write("<tr><td width=\"100%\" height=\"100%\" align=\"center\" valign=\"middle\">");
		w.document.write("<div align=\"center\"><a href=\"#\" onClick=\"javascript:window.close()\"><img src= \"" + img_src + "\" border=\"0\"></a></div>");
		w.document.write("</td></tr></table>");
		w.document.write("</body></html>");
		//w.resizeTo(larg, haut);
		//w.moveTo((screen.width-larg)/2, (screen.height-haut)/2);
		w.focus();
	}