function LoadImage() {
		var i,nbimg=LoadImage.arguments;
		for (i=0; i<nbimg.length; i++)
		img=new Image;
		img.src=nbimg[i];
}

function affiche (calque) {
	document.getElementById(calque).style.visibility='visible';
}

function masque (calque) {
	document.getElementById(calque).style.visibility='hidden';
}

function popup (fichier,nom,parametre) {
	window.open(fichier,nom,parametre);
}