// last update 11/07/2007 by giannibac
// 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=30,left=30');
idfinestra.document.open();
idfinestra.document.write('<html><head><title>' + titolo + '</title></head><body bgcolor="white">');
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:fotoc('tut/imm/computer.jpg', 'Dettaglio computer', 840, 640)"> Computer </a>

