/* function adicionaFavoritoLateral(pacote) { if (pacote != null) { var oCell_ = new Array(); if (document.getElementById("linhaFavoritosVazio") != null) { document.getElementById("favoritosTable").deleteRow(document.getElementById("linhaFavoritosVazio").rowIndex); } oRow = document.getElementById("favoritosTable").insertRow(document.getElementById("favoritosTable").rows.length); i = 0; oCell_[i] = oRow.insertCell(i++); i = 0; oCell_[i].className = "BkgIframe"; i = 0; tipo = ''; if (pacote.tipoAsString == 'NACIONAL') { tipo = 'Pacote Nacional'; } else if (pacote.tipoAsString == 'INTERNACIONAL') { tipo = 'Pacote Internacional'; } else if (pacote.tipoAsString == 'CRUZEIRO') { tipo = 'Cruzeiros'; } else if (pacote.tipoAsString == 'FEIRA') { tipo = 'Feiras e Eventos'; } oCell_[i].innerHTML = ' ' + '
' + '?idPacote='+ pacote.id +'">'+ pacote.titulo + '
' + tipo +'
'; alert('Item adicionado!'); } } function removeFavoritoLateral(id) { if (id != 'null') { if (document.getElementById("linhaFavorito"+id) != null) { document.getElementById("favoritosTable").deleteRow(document.getElementById("linhaFavorito"+id).rowIndex); } } } */ function carregaFavoritos(lista) { table = document.getElementById("favoritosTable"); //apaga todas as linhas primeiro for(var i=table.rows.length-1; i >= 0 ; i-- ) { table.deleteRow(i); } if (lista == null || lista == 'null' || lista.length <= 0) { oRow = table.insertRow(table.rows.length); oRow.id = 'linhaFavoritosVazio'; oCell = oRow.insertCell(0); oCell.innerHTML = "No 'Favorite' found"; } else { for(var i=0; i < lista.length; i++ ) { oRow = table.insertRow(table.rows.length); oRow.id = 'linhaFavorito'+ lista[i].id; oCell = oRow.insertCell(0); oCell.className = 'BkgIframe'; oCell.innerHTML = '' + '
' + ''+lista[i].descricao+ '
' + '' + lista[i].tipo + '' + '' + '' + '
'; } } }