
function printPage()
 { 
   // Stampa della pagina corrente.
   window.print();   return false; }



function MyFontSize(dimensione){
thtStyle = null;
if(dimensione=="1")theStyle = "90%";
if(dimensione=="2")theStyle = "100%";
if(dimensione=="3")theStyle = "120%";
if(theStyle)
document.getElementsByTagName("body")[0].style.fontSize = theStyle;
}




function afficheVignette(cheminVignette,cheminMaxi)
	{
	document.write('<A HREF="javascript:afficheMaxi(\''+cheminMaxi+'\')"><IMG SRC="'+cheminVignette+'"  HSPACE=3 VSPACE=3 ALIGN=left BORDER=0  ALT="Clicca qui per ingrandire la foto"></A>');
	}
 function afficheMaxi(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML>\n<HEAD>\n<TITLE>Il Saggiatore musicale</TITLE>\n</HEAD>\n<BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0>\n<CENTER><IMG SRC="'+chemin+'" BORDER=0 HEIGHT="480" NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+12,document.imageTest.height+40)"></CENTER>\n</BODY>\n</HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,left=100,top=50');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
