function openImage(pImage, pTitre) {
	html = '<html><head><title>Clément Ver Eecke -> '+pTitre+'</title></head>'; 
	html += '<body leftmargin="1px" marginwidth="1px" topmargin="10px" marginheight="1px" font-family><center>'; 
	html += '<img src="'+pImage+'" border="0" name="imageGal" onload="window.resizeTo( document.imageGal.width+60, document.imageGal.height+110);window.focus();">'; 
	html += '<A HREF="javascript:window.close()"><p style="font-family:verdana; font-size:10px; color:#666666; text-decoration:none;">[Fermer la fenêtre]</p></A></center></body></html>'; 
	popupImage = window.open('','galerieImage',"statusbar,titlebar,personnalbar,locationbar,menubar=no,scrollbars=yes,resizable=yes"); 
	popupImage.document.open(); 
	popupImage.document.write(html); 
	popupImage.document.close(); 

}