function hyperlinkjump(form) 
	{
	//form.golocation.blur();
	var myindex=form.artist.selectedIndex
	if (myindex==0) return false;
		window.location=form.artist.options[myindex].value;
	return true;
	}
