	// --   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/webonly/europe/2000/08/sub.html">Deathly Silences</A> <I>01/09/02</I><BR> TIME\'s Moscow bureau chief Paul Quinn-Judge on the status of Russia\'s attempts to rescue sailors trapped in the submarine'
	link[1] = '<A href="/time/europe/webonly/europe/2000/08/subletters.html">From Our Readers</A> <I>01/09/02</I><BR> Reader e-mails on the plight of the Russian submarine'
	link[2] = '<A href="/time/europe/webonly/europe/2000/08/sub2.html">Watching and Waiting</A> <I>01/16/02</I><BR> Russia waits to hear the fates of loved ones and countrymen aboard the stricken submarine'
	link[3] = '<A href="/time/europe/photoessays/kursk/index.html">Photo Essay: The Kursk &#0151; Lost at Sea</A> <I>08/02</I><BR> Hope and anticipation turn to grief and mourning as Norwegian divers discover a watery grave'
	link[4] = '<A href="/time/europe/webonly/europe/2000/08/subletters2.html">From Our Readers</A> <I>08/22/00</I><BR> Reader e-mails on the plight of the Russian submarine Kursk'
	link[5] = '<A href="/time/europe/webonly/europe/2000/08/kursk.html">Damage Control</A> <I>08/23/00</I><BR> While Russia mourns, its leaders pursue a disturbing policy of rewriting the Kursk story'
	link[6] = '<A href="/time/europe/webonly/europe/2000/08/salvage.html">Technical Difficulties</A> <I>08/23/00</I><BR> Time and money are not on the Russians\' side as they ponder what to do with the crippled Kursk'
	link[7] = '<A href="/time/europe/magazine/2000/0828/country.html">Why Did Our Boys Have to Die?</A> <I>08/28/00</I><BR> At the Kursk\'s home port, and across Russia, grieving families ask some awkward questions'
	link[8] = '<A href="/time/europe/magazine/2000/0828/cover.html">Death Watch</A> <I>02/21/02</I><BR> A collision or explosion sank the Kursk, but the  real cause of the tragedy was the rapid deterioration of Russia\'s rusting and underfunded armed forces'
	link[9] = '<A href="/time/europe/magazine/2000/0904/sub.html">The Real Mr. Putin</A> <I>02/25/02</I><BR>The Kursk tragedy reveals Russia\'s President as a man of the State, not of the people'
	link[10] = '<A href="/time/europe/magazine/2000/0904/subsalvage.html">Raising the Kursk</A> <I>09/04/00</I><BR>How to airlift a sub'
	link[11] = '<A href="/time/europe/webonly/europe/2000/10/kursk.html">Unanswered Questions</A> <I>10/27/00</I><BR> The Kursk salvage operation raises new questions about the tragedy'
	link[12] = '<A href="/time/europe/magazine/2000/1106/kursk.html">Depths of Despair</A> <I>11/06/00</I><BR> A sailor\'s farewell letter paints a grim picture of the Kursk crew\'s final hours'
	link[13] = '<A href="/time/europe/eu/magazine/0,13716,168221,00.html">Journey to the Bottom of the Sea</A> <I>06/11/02</I><BR> TIME\'s Moscow correspondent reports from the site of the Kursk salvage operation'
	link[14] = '<A href="/time/world/article/0,8599,172668,00.html">\'Kursk Salvage is an Adventurist Scam\'</A> <I>08/27/00</I><BR> Vice Admiral Yevgeny Chernov believes Moscow is covering up the cause of the submarine disaster'
	link[15] = '<A href="/time/europe/eu/magazine/0,13716,174730,00.html">Norway: Nukes R Us</A> <I>07/25/02</I><BR> Scandinavians shrug off the danger posed by the salvage operation'
	link[16] = '<A href="/time/europe/eu/magazine/0,13716,174906,00.html">Accidents Can Happen</A> <I>09/14/01</I><BR> The residents of Murmansk prepare for the much-delayed operation to raise the Kursk'
	link[17] = '<A href="/time/europe/eu/daily/0,13716,175219,00.html">Official Secrets</A> <I>09/17/01</I><BR> The salvage operation is plagued by delays and deception'
	link[18] = '<A href="/time/europe/eu/daily/0,13716,179151,00.html">News from the Front</A> <I>10/11/01</I><BR>As the Kursk is towed to port, questions about why it sank remain'

	
// --   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++
		}
		
}