 var txt;
  function message(n) {
  if (n == 0)
    txt = ' ';
  else if (n == 1)
    txt = 'Just who is Spike anyway?';
  else if (n == 2)
    txt = "Go find out about Charles Schulz, Spike's Creator.";
  else if (n == 3)
    txt = "Spike's History";
  else if (n == 4)
    txt = 'Visit the Strip Library (all the images I could find/scan)';
  else if (n == 5)
    txt = 'Go Back From Where You Came';
  else if (n == 6)
    txt = "Spike's Adventures";
  else
    return false;

  window.status = txt;
  return true;
  }