<!--
function openNewWin(foto) {
  //history.go(); // re-active la page principale
  PopupWin = window.open('','Image','width=100,height=100,toolbar=no,scrollbars=no,resizable=no,top=5,left=10');
  PopupWin.document.write("<html><head></head>"); 
  PopupWin.document.write("<script type=\"text/javascript\">function AdjustPopup() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+10,document.images[0].height+47); 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='"+foto+"' border='0'>");
  PopupWin.document.write("</td></tr></table></body></html>"); 
  PopupWin.document.close(); 
} //-->