<!-- 
        
function navRollover(name, number)  {

  number = number + 1;
  
  codeStatement = "document." + name + ".src = '../images/nav/" + name + "_" + number + ".jpg'";
  eval(codeStatement);

}

function changeLink(name)
{
  // initialize variables for setting name 'type' and the place in page where link resides
  
  link_type = new Array(3);
  // one place for the 'name' and the other for the 'number'
  
  link_type = name.split('_');
  // splitting name into two parts, variable type (image or link) and number
  
          
  
  var image_name = 'image_' + link_type[1];
  // variable to piece together link 'number' with 'image_'
        
   
  
  if (image_name == 'image_feature')
    {
      codeStatement = "document." + image_name + ".src = '../images/body/arrow_6.gif'";
      eval(codeStatement);
    }
  else
    {
      codeStatement = "document." + image_name + ".src = '../images/body/arrow_4.gif'";
      eval(codeStatement);  
    }   
  
  if (link_type[2] == 'arrow' || link_type[2] == 'out')
    {
      if (link_type[2] == 'arrow')
        {
          if (link_type[1] == 'more')
            {
              codeStatement = "document." + image_name + ".src = '../images/body/arrow_2.gif'";
              eval(codeStatement);
            }
          else
            {
              codeStatement = "document." + image_name + ".src = '../images/body/arrow_5.gif'";
              eval(codeStatement);
            }
        
        }
      else
        {
          codeStatement = "document." + image_name + ".src = '../images/body/dot.gif'";
          eval(codeStatement);  
        }
    }      
  
    
      // end of if statement
}
// end of function  

function viewShows() {

  if (document.viewOption.viewBy.value == 'Index')
    window.location='index.html';
  
  if (document.viewOption.viewBy.value == 'Year_2005')
    window.location='viewYear_05-03.html';
    
  if (document.viewOption.viewBy.value == 'Year_2002')
    window.location='viewYear_02-98.html';
    
  if (document.viewOption.viewBy.value == 'Year_1997')
    window.location='viewYear_97-93.html';
    
  if (document.viewOption.viewBy.value == 'Dave')
    window.open("http://www.therootslive.com/~david/tradable_shows.html", "dave");
        
  if (document.viewOption.viewBy.value == 'Erach')
    window.location='erach.html';
    
  if (document.viewOption.viewBy.value == 'Randy')
    window.open("http://www.virose.net/mymusiclist/", "dave");
} //END OF FUNCTION
              
// -->