// Short name of school as it is to appear in the title line of the search form and viewer

var shortName = "Tilden";


// Long name of school including city and state as it is to appear on the search form
// If the long name is not to appear, assign the null string

var longName = "Samuel J. Tilden High School, Brooklyn, New York";


// Name of yearbook that browser is to start with
//    In the form yyyym where
//       yyyy is 4-digit year
//       m is 1-digit monthe (1 if January, 6 if June, dash (-) if combined book

var defaultYear = "1957-";
defaultYear = "";


// Name of author as it is to appear at the top of the search form
// If the author name is not to appear there, assign the null string

var author = "Stephen P. Morse";


// Location of author to be associated with author name on search form

var authorLocation = "San Francisco";


// Email address of author to be associated with author name on search form

var authorEmail = emailaddr;


// Name of homepage as it is to appear on a button on the search form
// If the homepage button is not to appear, assign the null string

var homepage = "My Other Webpages";


// URL of homepage to be associated with the home page button on the search form

var homepageURL = "../index.html";
