function afficher(image, largeur, hauteur) {
	window.open("data/images/image.php?id=" + image + ".jpg", "image", "toolbar=0,status=0,width=" + (largeur + 20) +",height=" + (hauteur + 20));
}

function developper(nom_partie) {
	var partie = document.getElementById(nom_partie);
	if (partie.style.display == "inline")
		partie.style.display = "none";
	else
		partie.style.display = "inline";
}