// JavaScript Document
  function openWindow(url, w, h) {
    var options = "width=" + w + ",height=" + h + ",";
    options += "resizable=no,scrollbars=yes,status=yes,";
    options += "menubar=no,toolbar=no,location=no,directories=no";
    var newWin = window.open(url, 'newWin', options);
    newWin.focus();
  }

//var nLargeur = document.images[0].width + 10;
//var nHauteur = document.images[0].height + 40;
//window.resizeTo(nLargeur,nHauteur);

function twAjustePopUp() {
 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, auteur) {
  oFenetre = window.open('','Image','width=600,height=600,toolbar=no,scrollbars=no,resizable=no');
 oFenetre.document.write("<html><head><title>"+titre+"</title></head>");
 oFenetre.document.write("<script type=\"text/javascript\">function twAjustePopUp() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+10,document.images[0].height+40); window.focus();} else { setTimeout('twAjustePopUp()',1000) } }</"+"script>");
 oFenetre.document.write("<body onload='twAjustePopUp()' onblur='window.close()' 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='0' alt='"+auteur+"' title='"+auteur+"'>");
 oFenetre.document.write("</td></tr></table></body></html>");
 oFenetre.document.close();
}
