
	function goToDetails(that){
		if(that.value != "#"){
		window.location = that.value;
		}
	}

	function gotoArtistDetails() {
		if(document.forms[0].artistsList.value != '#') {
			window.location = document.forms[0].artistsList.value;
		}
	}

