<!--
function wOpen(wFile,W,H,T,L) {
searchWin = window.open(wFile,'inno','scrollbars=yes,resizable=yes,width='+W+',height='+H+',top='+T+',left='+L+',status=no,location=no,toolbar=no');
// searchWin.refer = self;
}

function fotozoom(winTit,imgFile,W,H){
W=W+25;
H=H+50;
pZoom = open('', 'zoom', 'scrollbars=yes, resizable=yes, width='+W+', height='+H+', top=0, left=0, status=no, location=no, toolbar=no');
pZoom.document.open();
pZoom.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
pZoom.document.write('<html><head>');
pZoom.document.write('<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">');
pZoom.document.write('<link href="../stile.css" rel="stylesheet" media="screen">');
pZoom.document.write('<title>zoom</title>');
pZoom.document.write('</head>');
pZoom.document.write('<body><table border="0" width="100%" height="100%" cellpadding="0" cellspacing="0">');
pZoom.document.write('<tr><td width="100%" valign="center" align="center">');
pZoom.document.write('<img border="0" src="'+imgFile+'">');
pZoom.document.write('<br><span class="testo">'+winTit+'</span><br>');
pZoom.document.write('</td></tr></table></body></html>');
pZoom.document.close();
}
// -->