function afficheMaxi(immagine, testo)
    {
    i1 = new Image;
    i1.src = immagine;
    html = '<HTML>\n<HEAD>\n<TITLE>'+testo+'</TITLE>\n</HEAD>\n<BODY bgcolor="#FFFFFF" LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0>\n<table widht="100%" heigth="100%" cellpadding="0" cellspacing="0" border="0"><tr><td align="center"><IMG SRC="../images/'+immagine+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+10,document.imageTest.height+29)"></td></tr></table>\n</BODY>\n</HTML>';
    popupImage = window.open('','_blank','width=300,height=550,top=20,left=20,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
    popupImage.document.open();
    popupImage.document.write(html);
    popupImage.document.close()
    };
