function afficheMaxi(immagine, testo)
    {
    i1 = new Image;
    i1.src = immagine;
    html1='<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>Scheda prodotto</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><link href="stile.css" rel="stylesheet" type="text/css"></head>';
    html2='<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><table align="center" width="656" border="0" cellspacing="0" cellpadding="0"><tr><td rowspan="2" width="104"><img src="../../images/profili/marchio_scheda.jpg" width="104" height="80"></td><td align="right" width="552"><div class="testoLink"><a href="javascript:window.close()"><img src="../../images/profili/chiudi_off.jpg" alt="chiudi la finestra" name="Image2" width="69" height="18" border="0"></a><br><a href="javascript:print()">stampa questa pagina <img src="../../images/profili/ico_stampa.gif" width="18" height="15" border="0" align="absmiddle"></a></div></td></tr>';
    html3='<tr><td valign="bottom"><img src="../../images/profili/px_rosso.gif" width="552" height="1"><div class="testo-black-11"><span class="titolo-14-neroMaiuscoletto"><?php echo "$titoloPag"; ?></span><br><span class="titolo-14-rosso">'+testo+'</span></div></td></tr>';
    html4='<tr><td colspan="2" align="center" height="500"><img src="../../images/profili/'+immagine+'_h.jpg"></td></tr><tr><td colspan="2" align="center"><div class="testo-gray-11">La ditta si riserva di apportare modifiche sia tecniche che estetiche senza preavviso </div></td></tr></table></body></html>';
    html=html1+html2+html3+html4;
    popupImage = window.open('','_blank','width=680,height=700,top=50,left=50,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=yes,resizable=0');
    popupImage.document.open();
    popupImage.document.write(html);
    popupImage.document.close()
    };
