	// --   set up global variables
	var avail = new Array()
	var para = new Array()
	i = n = 0
	
	// --   Available items
para[0]='<A HREF="zennstrom.html" border="0"><IMG src="/time/europe/html/040719/gdi/images/zennstrom.jpg" border="0" width="481" height="381"></A>'
para[1]='<A HREF="black.html" border="0"><IMG src="/time/europe/html/040719/gdi/images/black.jpg" border="0" width="481" height="381"></A>'
para[2]='<A HREF="ishizuka.html" border="0"><IMG src="/time/europe/html/040719/gdi/images/ishizuka.jpg" border="0" width="481" height="381"></A>'
para[3]='<A HREF="kim.html" border="0"><IMG src="/time/europe/html/040719/gdi/images/gyoon.jpg" border="0" width="481" height="381"></A>'
para[4]='<A HREF="lazaridis.html" border="0"><IMG src="/time/europe/html/040719/gdi/images/lazaridis.jpg" border="0" width="481" height="381"></A>'
// --   generate urls
	
while ( i < 10 ) {
	// -- pick a number, any number ...
	var a = Math.round(Math.random() * 5)
	// -- 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]
			)
			// -- have we reached the display limit?
			if (n > displayTotal - 2) {
				// -- If yes, this fails out of the loop
				i = 1000
			}
			n++
		}
		i++
}