	function linksBoxVisible(inItem){
		inItem.rows[1].className = "";
	}
	
	function linksBoxNone(inItem){
		inItem.rows[1].className = "none";
	}
	
	function visibleClick(id){
		object = document.getElementById(id);
	
		if (object.className == ""){
			object.className = "none";
		} else {
			object.className = "";
		}
	}
	
	function altName(event, id){
		
		artistName = id;
		
		object = document.getElementById('boxAltName');
		
		if (!event)event=window.event;

		x = event.clientX;
		y = event.clientY+(document.documentElement.scrollTop || document.body.scrollTop) - document.documentElement.clientTop;

		object.style.left = x - 20 + "px";
		object.style.top = y + 20 + "px";
		object.style.display = ""
		
		nameField = document.getElementById('nameField');
		nameField.innerHTML = artistName;
	}
	
	function altNameHide(id){
		document.getElementById('boxAltName').style.display = "none";
	}
	
	function listName(artistName, i){
		object = document.getElementById('artistName-' + i);
		object.innerHTML= artistName;
	}
	
	function _flash (version, filename, name, width, height, wmode, flashvars,bgcolor) {
   if (!bgcolor) bgcolor = '#C2D6E1';
  
   var menu    = '';
   document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version="+version+"' width='"+width+"' height='"+height+"' id='"+name+"' align='middle'>");
   document.write("<param name='FlashVars' value='"+flashvars+"' />");
   document.write("<param name='allowScriptAccess' value='always' />");
   document.write("<param name='wmode' value='"+wmode+"' />");
   document.write("<param name='bgcolor' value='"+bgcolor+"' />");
   document.write("<param name='salign' value='lt' />");
   document.write("<param name='movie' value='"+filename+"' /><param name='quality' value='high' /><embed src='"+filename+"' wmode='"+wmode+"' quality='high' FLashVars='"+flashvars+"' salign='lt' width='"+width+"' height='"+height+"' bgcolor='"+bgcolor+"' name='"+name+"' align='middle' allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
   document.write("</object>");
}