// <script type="text/javascript">
<!--  to hide script contents from old browsers

function display_art(title, medium, height, width, file)
{

	//alert(file);

	var x = document.getElementById("artistImage");
	var html = '<img src="' + file + '" width="400">' +  '<p>' + title + '</p>';

	if (medium != '')
		html += '<p style="margin-top: 5px">' + medium;

	if (height != '' && width != '')
		html += ' ' + height + ' x ' + width;

	html += '</p>';

	x.innerHTML = html;
}

// end hiding contents from old browsers  -->
// </script>