/* maler.js
Fichier javascript associé à (maler-pelster) article.html */

function montre(nomFichier) {
		x = document.getElementsByName("fullview");  // retourne un tableau de valeurs
		x[0].src = nomFichier;
		x = document.getElementById("content-fullview");  // affiche le container
		x.style.zIndex = 1;
}

	function cache() {
		x = document.getElementsByName("fullview");  // retourne un tableau de valeurs
		x[0].src = "IMG/transparent.gif";
		x = document.getElementById("content-fullview");     // masque le container
/*		x.style.zIndex = 1;*/
	}


