function cargarDatos(posicion)
{
	var oImg = traerImagen(posicion);
	var divNota;

	
	if (oImg.tituloNota != '') 
	{
		divNota = oImg.tituloNota 
		document.getElementById('divTitulo').innerHTML = divNota;
	}
	else
	{
		document.getElementById('divTitulo').innerHTML ='&nbsp;';
	}

	if (oImg.epigrafe != '')
	{
		document.getElementById('divEpigrafe').innerHTML = oImg.epigrafe;
	}
	else
	{
		document.getElementById('divEpigrafe').innerHTML ='';
	}
	
	//AUTOR CREDITO
	/*if (oImg.fuente != '' || oImg.autor != '')
	{
		var fuenteautor = '';
		if (oImg.fuente != '') {
			fuenteautor = oImg.fuente;
		}

		if (oImg.autor != '') {
			if(fuenteautor != '') fuenteautor += ' / ';
			fuenteautor += oImg.autor;
		}
		document.getElementById('divFotografo').innerHTML = '&nbsp;<b>' + oImg.categoria + ': ' + fuenteautor + '</b>';
	}
	else
	{
		document.getElementById('divFotografo').innerHTML = '';
	}
*/

}
