
// FILENAME + TITOLO + WIDTH + HEIGHT

function fotoc(filename, titolo, wid, hei) {
var idfinestra = window.open('','','height=' + hei + ',width=' + wid + ',resizable=yes,scrollbars=yes,toolbar=no,menubar=yes,top=10,left=10');
idfinestra.document.open();
idfinestra.document.write('<html><head><title>' + titolo + '</title></head><body bgcolor="black">');
idfinestra.document.write('<img src="' + filename + '" alt="' + titolo + '" border="0">');
idfinestra.document.write('</body></html>');
idfinestra.focus();
idfinestra.document.close();
}

// STRINGA PER LINK <a href="javascript:foto('giornalino/gio0506/imm_gio0506/rossogiallo.jpg', 'Il rosso e il giallo...', 840, 640)"> Foto1 </a>
