// JScript File

function hideAddtribution()
{
	document.getElementById('artist').style.display = 'none';
}


function showAttribution(e)
{
		var v = e.clientY;
		var h = e.clientX;
		var div = document.getElementById('artist');
		div.style.display = 'block';
		div.style.top = v + "px";
		div.style.left = h + "px";
}



