function Jeeves(disc) {
  if(isNaN(disc)) {
    disc = 0;
  }
  if(disc != 0) {
    document.write("<h2>The Other Episodes</h2>");
  }
  if(disc != 1) {
    document.write("<a href='jeeves_and_wooster_1.htm'>Jeeves and Wooster: the Complete First Season, Volume 1</a><br>");
  }
  if(disc != 2) {
    document.write("<a href='jeeves_and_wooster_2.htm'>Jeeves and Wooster: the Complete First Season, Volume 2</a><br>");
  }
  if(disc != 3) {
    document.write("<a href='jeeves_and_wooster_3.htm'>Jeeves and Wooster: the Complete Second Season, Volume 1</a><br>");
  }
  if(disc != 4) {
    document.write("<a href='jeeves_and_wooster_4.htm'>Jeeves and Wooster: the Complete Second Season, Volume 2</a><br>");
  }
  if(disc != 5) {
    document.write("<a href='jeeves_and_wooster_5.htm'>Jeeves and Wooster: the Complete Third Season, Volume 1</a><br>");
  }
  if(disc != 6) {
    document.write("<a href='jeeves_and_wooster_6.htm'>Jeeves and Wooster: the Complete Third Season, Volume 2</a><br>");
  }
  if(disc != 7) {
    document.write("Jeeves and Wooster: the Complete Fourth Season, Volume 1<br>");
  }
  if(disc != 8) {
    document.write("Jeeves and Wooster: the Complete Fourth Season, Volume 2<br>");
  }
}