	function escribirtabla(estilo){
		contlin=0;
		cont=0;
		document.writeln('<table  border="0" align="center" cellpadding="0" cellspacing="0">');
		document.writeln('<tr>');
		for(a in artistas){
			if(estilo=="decoimagen") document.writeln('<td><a href="'+rutaposters+artistas[a][2]+'" onclick="return cambiarfoto(this,'+a+')" class="'+estilo+'"><img src="'+rutaminiposters+artistas[a][2]+'" width="50" height="70" border="0" /></a></td>');
			else document.writeln('<td><a href="'+rutaposters+artistas[a][2]+'" onclick="return cambiarfoto(this,'+a+')" class="'+estilo+'"><img src="'+rutaminiposters+artistas[a][2]+'" width="56" height="79" border="0" /></a></td>');
			cont++;
			contlin++;			
			if(contlin==numeroelementosfila && cont<artistas.length){
				document.writeln('</tr><tr>');
				contlin=0;
			}
		}
		document.writeln('</tr>');
		document.writeln('</table>');
	}
	function cambiarfoto(obj,nid){
		document.getElementById("visor").src=obj.href;
		document.getElementById("titulo").innerHTML=artistas[nid][0];
		document.getElementById("comentarios").innerHTML=artistas[nid][1];		
		return false;
	}
	function inicio(){
		document.getElementById("visor").src=rutaposters+artistas[0][2];
		document.getElementById("titulo").innerHTML=artistas[0][0];
		document.getElementById("comentarios").innerHTML=artistas[0][1];		
	}