
function clsImportatori(codice)
{
 this.codice		= codice;
 
};


//-------------------------------------------------------------------------------

function caricaImportatori()
{
// funzione che carica l'elenco dei viaggi disponibili
var strHTML="";		//stringa html
var strImg="";		//path immagine


strHTML += "<table align=center width=100%>"

//preparazione riga di intestazione
			strHTML += "<tr>";
			strHTML +=		"<td background='img/menuscuro3.gif' class=tableitem align=center>";
			strHTML +=			"<b>importatore</b>";
			strHTML +=		"</td>";

			strHTML += "</tr>";

for (var i=0; i<aImportatori.length; i++)
	{
	
	 if (i%2==0)
		strImg = "img/menuscuro6.gif"
	 else
		strImg = "img/menuchiaro6.gif";
			
 	 strHTML += "<tr>";
	 strHTML +=		"<td background='" + strImg + "' class=tableitem>";
	 strHTML +=			"<b>"; 
	 strHTML +=				"<a href=# onclick='scheda(aImportatori[" + i + "].codice)'>";
	 strHTML +=					aImportatori[i].codice;
	 strHTML +=				"</a>";
	 strHTML +=			"</b>";
	 strHTML +=		"</td>";
	 strHTML += "</tr>";
	 
	};
	
strHTML += "</table>"	

document.all.divResult.innerHTML = strHTML;

};

//-------------------------------------------------------------------------------

function scheda(strCodice)
{
//funzione che visualizza la scheda importatore

window.navigate("schedaOrganizzatore.php?cod=" + strCodice + "&from=importatori");
};
//-------------------------------------------------------------------------------


