<!--//

	/******************************************************
	* Stampa referenze
	*******************************************************/
	function lista_referenze() {
	    var ie=document.all && !window.opera;
	    ListaReferenze=ie?document.all.Referenze:document.getElementById("Referenze");
		var testo='<table width="100%" cellpadding="5" cellspacing="5" summary="Referenze">';
        for (var i=0; i<vArticoli.length; i++){
         	testo+='<tr><td width="10%" class="Data">'+vArticoli[i].Data+'</td>';
         	testo+='<td width="30%" class="Riferimento">'+vArticoli[i].Riferimento+'</td>';
         	testo+='<td width="45%" class="Commento">'+vArticoli[i].Commento+'</td>';
         	testo+='<td width="15%" class="Link1">';
         	for (var j=0; j<vLinks[i].length; j+=2){
				testo+='<a style="cursor: hand" onclick="popUpWindow(\''+vLinks[i][j]+'\', 30, 30, 600, 450, \'yes\')">';
				testo+=vLinks[i][j+1]+'</a> ';
			}
         	testo+='</td></tr>';
        }
        testo+='</table>';
        ListaReferenze.innerHTML=testo;
	}

	/************************************************************
	* Generica finestra popup
	* Variabili:
	* - URLStr: locazione file da mostrare
	* - wLeft: posizione finestra - da sinistra
	* - wTop: posizione finestra - dall'alto
	* - wWidth: larghezza finestra
	* - wHeight: altezza finestra
	* - wBar: barra della finestra ('no' per nessuna barra)
	************************************************************/
	var popUpWin = 0;
	function popUpWindow(URLStr, wLeft, wTop, wWidth, wHeight, wBar)
	{
	    if(popUpWin) {
			if(!popUpWin.closed) popUpWin.close();
	    }
	    wBar = (popUpWindow.arguments.length < 6)?"no":wBar;
	    param = 'toolbar=no,location=no,directories=no,status=no,menubar=no,'
	    param += 'scrollbars='+wBar+',resizable=yes,copyhistory=yes,'
	    param += 'width='+wWidth+',height='+wHeight+',left='+wLeft+',top='+wTop+',screenX='+wLeft+',screenY='+wTop+'';
	    popUpWin = open(URLStr, 'popUpWin', param);
	}

//-->