	// --   set up global variables
	var avail = new Array()
	var para = new Array()
	
	var isSpace
	i = n = 0
	
	// --   Available items
	para[0] = '<TABLE width="100%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="captionPanel"><em>There\'s more to Underground Paris than the Metro. A system of pipes 1,000km long, sends compressed air to homes and businesses &#151; it serves many purposes, but it was built originally to operate clocks and elevators</em></TD></TR></TABLE>'
	para[1] = '<TABLE width="100%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="captionPanel"><em>Paris\' best known monument, The Eiffel Tower, was due to be demolished in 1909. It was saved by the fact that it carried an important radio telegraphy aerial.</em></TD></TR></TABLE>'
	para[2] = '<TABLE width="100%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="captionPanel"><em>Until 1836, the Red Flag Act required any self-propelled vehicle in Britain to be preceded by a man carrying a red flag, thereby limiting the speed to 4mph, the average speed of cars in London today.</em></TD></TR></TABLE>'
	para[3] = '<TABLE width="100%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="captionPanel"><em>London\'s Parliament Square hosted the world\'s first traffic lights, run on gas, to help MPs get out of the House of Commons. They exploded in 1869 but were repaired and continued for another 3 years.</em></TD></TR></TABLE>'
	para[4] = '<TABLE width="100%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="captionPanel"><em>The last German-built Volkswagen Beetle &#151; designed in 1938 as The People\'s Car  &#151; rolled off the production line in Wolfsburg on Jan. 19, 1978. However, Beetle were being produced as late as July 2003 in Mexico.</em></TD></TR></TABLE>'
	para[5] = '<TABLE width="100%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="captionPanel"><em>The Anglo-French Concorde airliner made its first flight from Toulouse on March 2, 1969, "heralding a new era of supersonic passenger flight". Both Air France and British Airways now plan to scrap their Concorde fleets in October 2003</em></TD></TR></TABLE>'
	para[6] = '<TABLE width="100%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="captionPanel"><em>Dublin\'s oldest workhouse closed its doors for the last time in July 1969. Based in Smithfield, the premises housed 10,037 orphan children during the one hundred and seventy years it operated.</em></TD></TR></TABLE>'
	para[7] = '<TABLE width="100%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="captionPanel"><em>Before today\'s skyscrapers, London\'s skyline was largely the creation of a single man, Sir Christoper Wren (1632-1723), who had had only six months of architectural traing in Paris.</em></TD></TR></TABLE>'
	para[8] = '<TABLE width="100%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="captionPanel">Royalties from the sales of <EM>Mein Kampf</EM>, the book in which Adolf Hitler laid out the racist and nationalist theories which lead to the death of millions in war and Holocaust, and the redrawing of the Europen landscape, are now paid by publishers Pimlico to a variety of Jewish charities</TD></TR></TABLE>'
	
	// --   generate urls
while ( i < 999 ) {
	// -- pick a number, any number ...
	var a = Math.round(Math.random() * 10)
	// -- Is the item a). available and b). an item at all ...
	if (avail[a] != 'no' && para[a] != null) {
			avail[a] = 'no'
			document.write (
				para[a]
			)
			// -- Does this require space between quotes?
			if (isSpace != null) {
				document.write (
					'<BR><BR><BR>'
				)
			}	
			// -- have we reached the display limit?
			if (n > displayTotal - 2) {
				// -- If yes, this fails out of the loop
				i = 1000
			}
			n++
		}
		i++
}