function apri(img) {
finestra = open("","","toolbars=no,resizable=yes");
testo="<html><head><title>Osteria dei Fiori</title><link rel=stylesheet href=stile.css type=text/css></head><body style='margin:0px;'><table border=2 width=100% height=100% cellspacing=0 cellpadding=0  background=../images/menu/sfondo.jpg><tr><td align=center><img src='" +img +"' onload='self.resizeTo(document.images[0].width+100, document.images[0].height+120); return true;'><br><br><input name=B1 onClick=window.close() type=button  class=submit value=Chiudi></td></tr></table></body></html>";
finestra.document.write(testo);
finestra.document.close();
finestra.focus();
}

