function zoomma(nome,descr,w,h) {
mywnd=window.open("","","status=1,scrollbars=1,resizable=1,width=610,height=520,screenX=1,screenY=1");
mywnd.document.write("<HTML><HEAD><TITLE>"+descr+"</TITLE>");
mywnd.document.write('<script type="text/javascript" src="mir.js"></script>');
mywnd.document.write('</HEAD><BODY bgcolor="#ffffc0" onClick="window.close()">');

mywnd.document.write('<noscript>');
mywnd.document.write('<b>JAVASCRIPT DISABLED/DISABILITATO</b>');
mywnd.document.write('<br></noscript>');

mywnd.document.write("Clicca per chiudere questa finestra / Click to close this window");
mywnd.document.write("<img src=" + nome + " width="+w*2+" height="+h*2);
mywnd.document.write(' alt="Click to close" ');
//mywnd.document.write(' alt="Click to zoom" style="CURSOR: hand" ');
//mywnd.document.write(" onClick=");
//mywnd.document.write('"');
//mywnd.document.write("zoomma('"+nome+"','"+descr+"',"+w+"*2,"+h+"*2)");
//mywnd.document.write('"');

mywnd.document.write(' onmousemove="miro(event,this)" ');
mywnd.document.write('>');

mywnd.document.write('<img id="bbabao" src="dot.gif" width="1" height="1" style="position:absolute;top:1;left:1;">');
mywnd.document.write('<img id="bbabav" src="dot.gif" width="1" height="1" style="position:absolute;top:1;left:1;">');


mywnd.document.write("</BODY></HTML>");
mywnd.document.close();
}
function chbg(obj, bgColor){
obj.style.backgroundColor = bgColor;
}
function dovesono(cosa){
	chbg(document.getElementById(cosa), "#d1d2d3");
}
function chsize(che){
	ogg=document.getElementById('maintext');
	if ( ogg.style.fontSize == '1.5em'){
		ogg.style.fontSize = '1em';
	}else{
		ogg.style.fontSize = '1.5em';
	}
}