
function go()
{
	box = document.forms[0].artist_list;
	artist_id = box.options[box.selectedIndex].value;
	if (artist_id) location.href = "/artists/details.php?id="+artist_id;
}
