<!-- 
panoPosX = 50;
panoPosY = 50;
panodefWidth  = 600;
panodefHeight = 425;
panoopt='scrollbars=yes,width='+panodefWidth+',height='+panodefHeight+',left='+panoPosX+',top='+panoPosY;
function popPano(pictURL,pictTitle,popTitle){
	imgWin=window.open('about:blank','',panoopt);
	with (imgWin.document){
		writeln('<html><head><title>Chargement... Loading.....</title>');
		writeln('<link rel="stylesheet" type="text/css" href="/css/gallery.css">');
		writeln('<scr'+'ipt>');
		writeln('function doTitle(){document.title="'+popTitle+'";}');
		writeln('</scr'+'ipt>');
		writeln('</head><body onload="doTitle();self.focus()" onblur="self.close()">');
		writeln('<img name="gch" src='+pictURL+' title="'+pictTitle+'" alt="'+pictTitle+'" border="0"></body></html>');
		close();		
	}
}
//--> 
