function aggiungi(){
var tbl=document.getElementById("righefile");
var tbody = tbl.getElementsByTagName('tbody')[0];
var nomefile =document.getElementById("fileToUpload").value;
var idriga=1;
if (nomefile==='') alert('Nessun file selezionato');
else{
var row = document.createElement("tr"); //crea nuova riga per nuovo file
row.setAttribute("id",idriga);
var cell = document.createElement("td");
var cellText = document.createElement("input");
cellText.setAttribute("value",nomefile);
cellText.setAttribute("readonly","readonly");
cell.appendChild(cellText);
row.appendChild(cell);
var cell2 = document.createElement("td");
var cellText2 = document.createElement("input");
cellText2.setAttribute("type","button");
cellText2.setAttribute("value","rimuovi");
cellText2.setAttribute("onclick","rimuovi(idriga)");
cell2.appendChild(cellText2);
row.appendChild(cell2);
var cellmail=document.createElement("td");
var cellmailText=document.createElement("input");
cellmailText.setAttribute("readonly","readonly");
cellmailText.setAttribute("value","EMAIL");
cellmailText.setAttribute("size","3");
cellmail.appendChild(cellmailText);
row.appendChild(cellmail);
var campo_mail=document.createElement("td");
var cont_mail=document.createElement("input");
cont_mail.setAttribute("type","checkbox");
campo_mail.appendChild(cont_mail);
row.appendChild(campo_mail);
var cellfax=document.createElement("td");
var cellFaxText=document.createElement("input");
cellFaxText.setAttribute("readonly","readonly");
cellFaxText.setAttribute("value","FAX");
cellFaxText.setAttribute("size","3");
cellfax.appendChild(cellFaxText);
row.appendChild(cellfax);
var campo_fax=document.createElement("td");
var cont_fax=document.createElement("input");
cont_fax.setAttribute("type","checkbox");
campo_fax.appendChild(cont_fax);
row.appendChild(campo_fax);
tbody.appendChild(row);
nomefile='';
//idriga++;
}
}