<!--
	function charger(photo) {
		gauche    = (screen.width-640)/2 ;
		haut      = (screen.height-480)/2 ;
		var popup = window.open("fenetre.html?" + photo , "popup" , "top=" + haut + ", left=" + gauche + ", width=640, height=480, menubar=no, scrollbars=no, statusbar=no") ;
		popup.document.close() ;
		popup.focus() ;
	}
	function lien_externe() { 
		if (!document.getElementsByTagName) return ; 
		var anchors = document.getElementsByTagName("a") ; 
		for (var i=0; i<anchors.length; i++) { 
			var anchor = anchors[i] ; 
			if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") anchor.target = "_blank" ; 
			}
		}
	window.onload = lien_externe ;
-->
