function showGraphic(gURL, gTitle, gWidth, gHeight)
{
	windowOptions="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";

	gw = window.open("", "", windowOptions + ',width=' + gWidth + ',height=' + gHeight);
	gw.focus();
	gw.document.open();
	with(gw)
	{
		document.write("<html><head>");
		document.write("<title>" + gTitle + "</title>");
		document.write("</head>");
		document.write("<body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
		document.write("<img border=\"0\" onclick=\"window.close();\" src=\""+ gURL +"\" title=\"Cliquez sur l'image pour la fermer\">");
		document.write("</body></html>");
	}
}

