// Ratti snc - last update 11/07/2007 by www.computerprice.it
// 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=50,left=100');
idfinestra.document.open();
idfinestra.document.write('<html><head><title>' + titolo + '</title></head><body bgcolor="blue">');
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('tut/imm/computer.jpg', 'Dettaglio computer', 840, 640)"> Computer </a>
