function searchArtists(searchText)
{
    var url = "../music/SearchArtists.aspx?sText=" + searchText;
    window.location.href = url;
}
function performerDisplaySelected(performerDisplayID)
{
    var url = "ShowArtist.aspx?performerID=" + performerDisplayID;
    window.location.href = url;
}
function albumDisplaySelected(albumDisplayID, performerDisplayID) {
    var url = "ShowAlbum.aspx?albumID=" + albumDisplayID+"&performerID="+performerDisplayID;
    window.location.href = url;
}
function MM_jumpMenu(targ,selObj,restore){ 
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
