function openZoom(detail){
	zoom=window.open("", "popup", config='height=450, width=500, left=120, top=100, scrollbars=yes, toolbar=no, menubar=no, resizable=yes, location=no, directories=no, status=no');
	
	zoom.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml">')
	zoom.document.write('<head><title>Details</title><link rel="stylesheet" type="text/css" href="/css/style.css" /></head>')
	zoom.document.write('<body>')
	zoom.document.write('<div class="detail">'+detail+'')
	zoom.document.write('<br /><br /><div align="center"><small><a href="javascript:self.close()">Fermer</a></small></div>')
	zoom.document.write('</div></body></html>')

	zoom.document.close()
	return;
}
