	// --   set up global variables
	
	var used = new Array()
	i = 0
	n = 0
	// --   generate urls
	
	while ( i < 49 ) {
	
	// --   set up urls variables
	
	var a = i
	link = new Array
	
	// --   The links
	// --    Add new stories at the end
	
	
	
	link[0] = '<A href="/time/europe/magazine/2003/0210/homeless/diary.html">Moscow\'s Invisible Homeless</A>: A day in the life of the people of the dump <I>01/09/03</I>'
	link[1] = '<A href="/time/europe/magazine/article/0,13005,901030224-423491,00.html">Bad News from Russia</A>: Russian TV loses its top news anchor — and its independence <I>03/03/03</I>'
	link[2] = '<A href="/time/europe/magazine/article/0,13005,901030901-477901,00.html">Changing Fortunes</A>: Abramovich & Khodorkovsky &#151; A good week to be a Russian tycoon?<I>07/14/03</I>'
	link[3] = '<A href="/time/europe/magazine/article/0,13005,901030714-463065,00.html">Festival of Terror</A>: 18 dead as women suicide bombers target pop festival <I>07/14/03</I>'
	link[4] = '<A href="/time/europe/magazine/article/0,13005,901030721-464414,00.html">Awfully Familiar</A>: The war in Chechnya &#151; now sending suicide bombers to Moscow &#151; is becoming Russia\'s version of Palestine <I>07/21/03</I>'
	link[5] = '<A href="/time/europe/magazine/article/0,13005,901030728-465802,00.html">Oligarch Alert</A>: Is the Kremlin cracking down on Moscow\'s moguls as a pre-election ploy? <I>07/28/03</I>'
	link[6] = '<A href="/time/europe/etan/">Then and Now &#151; Moscow 1991</A>: \'I outsmarted the coup plotters. I told them to go to the Crimea and talk to Gorbachev\' <I>08/18/03</I>'
	link[7] = '<A href="/time/europe/magazine/article/0,13005,901030901-477901,00.html">Tennis, Everyone?</A>: Young Russians turn to tennis as a path from poverty <I>09/01/03</I>'
	
	
// --   Pick a link, any link
	
	if (used[a] != 'yes') {
			used[a] = 'yes'
			var linkShow = link[40-a]
			
		// --   Print results
			if (linkShow != null) {
				document.write (
					linkShow + 
					'<BR><BR>'
				)
				
				// --  Have we reached the diplay items limit?
				if (n == displayTotal - 1) {
					i = 50
				}
				n++
			}
			i++
		}
		
}

