function popupcentree(url,largeur,hauteur) {
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;
	w=open("","","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",scrollbars=0,menubar=0,directories=0,status=0,resizable=1");
	w.document.write("<html>\n<head>\n<title>Quaak Fleurs Distribution - Zoom</title>\n</head>\n");
	w.document.write("<body leftMargin='0' topMargin='0' marginwidth='0' marginheight='0'>\n");
	w.document.write("<a href='javascript:window.close();' title='Fermer'><img src='"+url+"' border='0' alt='Image Quaak Fleurs Distribution'></a>\n");
	w.document.write("</body>\n</html>");
	w.document.close();
}