function PopupImageT(img,titre) {
	var left;
	var top;
	top = ((screen.height -400 ) / 2);
	left =	((screen.width - 200) / 2);
	w=open("",'titre',"toolbar=0,scrollbars=1,location=0,status=0,menubar=0,directories=0,resizable=0,width=400,height=400,left="+left+",top="+top+"");	
	w.document.write('<HTML><HEAD><TITLE>'+titre+'</TITLE></HEAD>');
	w.document.write("<SCRIPT language=javascript>function checksize()  { if (document.images[0].complete) {  this.window.resizeTo(document.images[0].width+20,document.images[0].height+100); window.focus();} else { setTimeout('check()',250) } }</"+"SCRIPT>");
	w.document.write("<BODY onload='checksize()' leftMargin=3 topMargin=5 marginwidth=0 marginheight=0>");
	w.document.write('<IMG src="'+img+'" border=0 hspace=5 vspace=10 />');
	w.document.write("");
//	w.document.write('<p style="color: #ffffcc;text-align: center;">'+titre+'</p>');
	w.document.write('</BODY></HTML>');
	w.document.bgColor="#837E69"
	w.document.close();
	
}

function PopupImage(img) { 
titre="Agrandissement"; 
w=open("",'image','width=400,height=400,toolbar=no,scrollbars=0,resizable=1'); 
w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>"); 
w.document.write("<SCRIPT language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+40,document.images[0].height+60); window.focus();} else { setTimeout('checksize()',250) } }</"+"SCRIPT>"); 
w.document.write("<BODY onload='checksize()' onblur='window.close()' onclick='window.close()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
w.document.write("<TABLE width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><TR>");
w.document.write("<TD valign='middle' align='center'><IMG src='"+img+"' border=0 alt='Mon image'>"); 
w.document.write("</TD></TR></TABLE>");
w.document.write("</BODY></HTML>"); 
w.document.bgColor="#837E69"
w.document.close(); 
} 

