// JavaScript Document
   function mi(img){
      img = img.replace(/p.gif/gi, '.jpg');
      var p = window.open('','projetocrescer','width=800,height=600,resizable=yes,scrollbars=no,toolbar=no,status=no');
      p.document.write('<html><head><title>Flamboyant VIP</title>');
	  p.document.write('</head><body leftmargin="0" topmargin="0">');
	  p.document.write('<a href="javascript:self.close()"><img src="'+ img +'" border="0" alt="cliquer pour fermer / click to close"></a>');
	  p.document.write('</body></html>');
	  p.document.close();
   }