// JavaScript Document
function twAjustePopUp() {
	// Compatible IE5+ / NN6+ / Mozilla
	if (document.images[0].complete) {
		window.resizeTo(document.images[0].width + 10,document.images[0].height + 40);
		window.focus();
	}
	else {
		setTimeout('twAjustePopUp()', 1000) 
	}
}
	
function twPopupImage(img, titre) { 
  // Compatible IE5+ / NN6+ / Mozilla
  oFenetre = window.open('','pagePopup','width=100,height=100,left=200,toolbar=no,scrollbars=no,resizable=no,status=no');
  oFenetre.document.write("<html><head><title>"+titre+"</title>");
//B.M. Il y a des pbs avec IE. Bloque tout.
// oFenetre.document.write("<script language=\"JavaScript\" src=\"scripts/noClick.js\"></script></head>"); 
  oFenetre.document.write("</head>"); 
  oFenetre.document.write("<script type=\"text/javascript\">function twAjustePopUp() { if (document.images[0].complete) {window.resizeTo(document.images[0].width+30,document.images[0].height+50); window.focus();} else { setTimeout('twAjustePopUp()',1000) } }</"+"script>");
  oFenetre.document.write("<body onload='twAjustePopUp()' onclick='window.close()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>"); 
  oFenetre.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><tr><td valign='middle' align='center'>"); 
  oFenetre.document.write("<img src='"+img+"' border='1' >");
  oFenetre.document.write("</td></tr></table></body></html>"); 
  oFenetre.document.close(); 
} 
