function viewFoto(foto,fw,fh){
var fwin=window.open('', '', 'height='+fh+',width='+fw+',top=0,left=0,status=no,tolbar=no,menubar=no,location=no,scrollbars=no');
fwin.document.open();
fwin.document.writeln('<html><script language=JavaScript>setTimeout("window.focus();",100);self.resizeTo('+(fw+12)+','+(fh+32)+')<\/script><body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0><img src='+foto+'.jpg width='+fw+' height='+fh+'><\/body><\/html>');
fwin.document.close();
}