quote = new Array()

quote[3] = new Array()
quote[3][1]= "Human vision is untrustworthy, subjective and selective. Camera vision is total and non – objective.  - Andreas Feininger"
quote[3][2]= "The camera captures light, our minds capture images."
quote[3][3]= "Life is fun. You've got the picture to prove it. - Pentax advertisement"
quote[3][4]= "A definition of a professional photographer: A pro NEVER shows anybody the mistakes."
quote[3][5]= "Everyone has a photographic memory. Some don't have film."

	var bV = parseInt(navigator.appVersion);
	NS4 = (document.layers) ? 1 : 0; // is it Netscape 4+
	IE4 = (document.all) ? 1 : 0;    // is it Explorer 4+
	ver4 = (IE4 || NS4) ? 1 : 0;      // if it's either it's version 4

var curRecord = 1; 
var maxRecords = quote.length-1; 
var maxFields = quote[3].length-1; 
var rnd1 = Math.random() * maxFields
var rrnd1 = Math.round(rnd1)
var quote= quote[3][rrnd1]

document.write("'" + quote + "'")