// Short name of school as it is to appear in the title line of the search form and viewer

var shortName = "Jefferson";


// 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 = "Thomas Jefferson 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 month (1 if January, 6 if June, dash (-) if combined book

var defaultYear = "19271";


// 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 = "Steven Lasky";


// Location of author to be associated with author name on search form

var authorLocation = "New York";


// Email address of author to be associated with author name on search form

var authorEmail = "steve@museumoffamilyhistory.com";


// 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 = "Museum of Family History";


// URL of homepage to be associated with the home page button on the search form

var homepageURL = "http://www.museumoffamilyhistory.com";

