// artists.jsfunction showThumbnail(srcImage, text) {    var thumbnail = document.getElementById("thumbnail");    if(thumbnail == null) return;    thumbnail.src = srcImage;        var description = document.getElementById("description");    if(description == null) return;    description.innerHTML = text;}// JavaScript Document
