var theForm = document.artistPage;
function loadNewArtist()
{
  var whichOption = theForm.bandID.selectedIndex;
  if (whichOption != 0)
  {
    theForm.action = "/sound_artist-detail&" + theForm.bandID[whichOption].value;
    theForm.submit();
  }
}
function thumbnailNavParam(artistParameter)
{
  theForm.bandID.value = artistParameter
  top.window.location.href = "/sound_artist-detail&" + artistParameter;
}
function directToArtist(artistParameter)
{
  theForm.bandID.value = artistParameter;
  window.location.href = "/sound_artist-detail&" + artistParameter;
}
function popupVideo(url,width,height) 
{
  var fromLeft = (screen.width-800)/2;
  var fromTop = (screen.height-500)/2;
  var Location = url;
  cwinx = window.open(Location,'cwinx','width='+ width + ',height=' + height + ',scrollbars=0,location=no,resizable=no,left=' + fromLeft + ',top=' + fromTop + ',toolbar=no');
  cwinx.focus();
}
