
function tratarArtistasIE(xmlText, titulo)
{
	var xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
	xmlDoc.async="false";
	xmlDoc.loadXML(xmlText);

	borrarFilasTablaIE(document.getElementById("tableListaTABLE"));
	if (xmlDoc.getElementsByTagName("nombre").length == 0)
	{
		establecerMensaje("No existen " + titulo  + " dados de alta");
	}
	else
	{
		var i = 0;
		crearInicioHTMLListaArtistasIE(titulo);
		cambiarEnlace(titulo);
		for (i = 0; i < xmlDoc.getElementsByTagName("nombre").length; i++)
		{
			var artistaDescriptor = createArtistaDescriptor(xmlDoc, i);
			crearFilaArtistaIE(artistaDescriptor);
		}

	}
}


function crearInicioHTMLListaArtistasIE(titulo)
{
	var oTable = document.getElementById("tableListaTABLE");
	var oRow = oTable.insertRow();
	var oCell = oRow.insertCell();
	oCell.innerHTML = "<img src=\"../images/pixel.gif\" width=\"25\" height=\"20\" />";

	oCell = oRow.insertCell();
	oCell.className = "tituloArtista";
	oCell.colspan = 4;
	oCell.innerHTML = titulo;

}


function crearFilaArtistaIE(artistaDesc)
{
	var oRow;
	var oCell;
	var oTable = document.getElementById("tableListaTABLE");
	oRow = oTable.insertRow();
	oRow.valing = "center";

	oCell = oRow.insertCell();
	oCell.innerHTML = "<img src=\"../images/pixel.gif\" width=\"25\" height=\"20\" />";

	oCell = oRow.insertCell();
	oCell.innerHTML = "<img src=\"../images/pixel.gif\" width=\"25\" height=\"20\" />";
	if (artistaDesc.web == "ND")
	{
		oCell.className = "texto";
		oCell.innerHTML = artistaDesc.nombre;
	}
	else
	{
		oCell.align="left"
		oCell.innerHTML = "<a class=\"enlace\" href=\"#\" onclick=\"javascript:window.open('" + artistaDesc.web + "','new','');\">" + artistaDesc.nombre + "</a>";
	}
	oCell = oRow.insertCell();
	oCell.className = "texto";
	oCell.innerHTML = artistaDesc.grupo;

	oCell = oRow.insertCell();
	oCell.className = "texto";
	oCell.innerHTML = "<a class=\"enlace\" href=\"#\" onclick=\"javascript:window.open('verImagen.html?imageName=" + artistaDesc.imagen + "', 'newimage', 'location=no, menubar=no, scrollbars=yes, status=no, toolbar=no, resizable=yes');\">Ver Imagen</a>";
}
