function setClass(theRow, theClass) {
  theRow.className = theClass;
  return;
}

function LMA(ID) {
  self.location = ID;
}

function Go(ID) {
  self.location = "setlists.php?id=" + ID;
}


function highlight(theRow, ID) {
  theRow.className = 'highlight';
  //self.location = "?id=" + ID;

//  if ( theRow.className != 'highlight' ) {
//    theRow.className = 'highlight';
//    //theRow.style.backgroundColor = '#FFCC99';
//  } else {
//    //theRow.style.backgroundColor = '#FFCC99';
//    theRow.className = oldClass;
//  }
//  return;
}

function Sort(field) {
  D = document.forms[0].D.value;
  O = document.forms[0].ord.value;
  
  // Set D field
  if (O == field) {
    // Sort field is the same so reverse D
    if (D == 1) {
      document.forms[0].D.value = '';
    } else {
      document.forms[0].D.value = '1';
    }
  } else {
    // Sort field is different so no D
    document.forms[0].D.value = '';
  }
  
  // Set ord field
  document.forms[0].ord.value = field;
  
  // Submit Form
  document.forms[0].submit();
}
