<!-- Begin
	var howMany = 4
	var quote = new Array(howMany+1)
	quote[0]="Henry Archer developed the first perforations for stamps in 1850"
	quote[1]="The first Australian Commonwealth stamp was not issued until 1913"
	quote[2]="After Federation, Australian State stamps were used until 1913"
	quote[3]="The first Universal Postal Union meeting was in Paris in 1971 all proceedings were recorded in french. That is why all Air Mail stickers from any country  have 'Par Avion' on it"
	quote[4]="Australia Post invented personalised stamps."
	function rndnumber(){
	var randscript = -1
	while (randscript < 0 || randscript > howMany || isNaN(randscript)){
	randscript = parseInt(Math.random()*(howMany+1))
	}
	return randscript
	}
	quo = rndnumber()
	quox = quote[quo]
	document.write(quox)
	// End -->
