// $Id: $

function api_one_depiction(obj) 
{
	d = document.getElementById('one_depiction');
	d.innerHTML= '';

	var html = '';
	
	if (obj.results.length > 0)
	{
		if (obj.results[0].isThumbnail)
		{
			html += '<img src="' + gWebRoot + 'media.php?id=' + obj.results[0].object_id + '" width="100" />';
		}
	}
	d.innerHTML= html;
}