function vediFoto(foto)
{
  html = "<html><head><title>Sfida GirlPower</title></head>" + 
         "<body><center><img src='" + foto +
         "' name='imagecc' onLoad='window.resizeTo(document.imagecc.width+14,document.imagecc.height+32)' >"  +
         "</center></body></html>";
  popupImage = window.open('','ccfoto','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
  popupImage.document.open();
  popupImage.document.write(html);
  popupImage.document.close()
}
