// ************************************************************************************* // * Quotes * // ************************************************************************************* var quote1=new Array(100); var quote2=new Array(100); totalQuotes = 7; quote1[1] = '"Photograph: a picture painted by the sun without instruction in art."'; quote2[1] = ' --Ambrose Bierce'; quote1[2] = '"Sometimes I do get to places just when God is ready to have someone click the shutter."'; quote2[2] = ' --Ansel Adams'; quote1[3] = '"Often while traveling with a camera we arrive just as the sun slips over the horizon of a moment, too late to expose film, only time enough to expose our hearts."'; quote2[3] = ' --Minor White'; quote1[4] = '"Let the subject generate its own photograph. Become a camera."'; quote2[4] = ' --Minor White'; quote1[5] = '"No matter how slow the film, the Spirit always stands still long enough for the photographer It has chosen."'; quote2[5] = ' --Minor White'; quote1[6] = '"...all photographs are self-portraits."'; quote2[6] = ' --Minor White'; quote1[7] = '"Be still with yourself until the object of your attention affirms your presence."'; quote2[7] = ' --Minor White'; // ************************************************************************************* // * Random number generator. * // ************************************************************************************* function rndnumber(low, high) { var rand = -1 while (rand < low || rand > high || isNaN(rand)) { rand = parseInt(Math.random()*(high)) + 1 } return rand }