function popupImg(urlImage, largeur, hauteur)
{	
	w=open("", 'popupimage', 'height=500 , width=500 , location=no , resizable=yes');
	w.resizeTo(largeur+8, hauteur+136);
	w.document.write('<html><head><title>Image</title></head><body style="margin:0;">');
	w.document.write('<div style="background-color:#080032;height:62px;width:'+largeur+'px;"><img src="http://www.gineiden.net/images/popup.png" alt="" style="float:left" />');
	w.document.write('<input type="button" onclick="javascript:window.close();" value="Fermer" style="margin-top:30px;margin-left:10px;" /></div>');
	w.document.write('<img src="'+urlImage+'" alt="" /></body></html>');
}