<!--
function openNewWinBig(Bigfoto) {
  //history.go(); // re-active la page principale height + 47
  PopupWin = window.open('','Image','width=100,height=100,toolbar=no,scrollbars=yes,resizable=no,top=0,left=0');
  PopupWin.document.write("<html><head></head>"); 
  PopupWin.document.write("<script type=\"text/javascript\">function AdjustPopup() { if (document.images[0].complete) { largeur = window.screen.availWidth; hauteur = window.screen.availHeight; large=largeur - 50; haut=hauteur - 50; window.resizeTo(large,haut); window.focus();} else { setTimeout('AdjustPopup()',1000) } }</"+"script>");
  PopupWin.document.write("<body onload='AdjustPopup()' onblur='window.close()' onclick='window.close()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>"); 
  PopupWin.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><tr><td valign='middle' align='center'>"); 
  PopupWin.document.write("<img src='"+Bigfoto+"' border='0'>");
  PopupWin.document.write("</td></tr></table></body></html>"); 
  PopupWin.document.close(); 
} //-->
