function popupImage(img)
{
	w=open('I love green project - contribution: taille originale','image','width=800,height=600,toolbar=no,scrollbars=yes,resizable=yes');
	var tmp = w.document;
	tmp.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" \n"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n<html>\n<head>\n\t<title>contribution: taille originale</title>\n</head>\n');
	tmp.write('<body>\n<a href="#" onClick="javascript:window.close();"><img src="');
	tmp.write(img);
	tmp.write('" alt="image taille originale" style="border:0;" /></a>\n</body>\n</html>');
	tmp.close();
	
}
