	// --   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/eu/magazine/0,13716,180582,00.html">Putin\'s Bold Move</A> <I>10/22/01</I> <BR>Joining the West in its war on terror was the easy part. Now can he keep the generals happy and safeguard his country&#146;s backyard?'
	link[1] = '<A href="/time/europe/eu/daily/0,13716,203349,00.html">Jihad Comes to Georgia</A><I> 02/28/02</I><BR>Taliban and al-Qaeda fighters may have taken refuge in the Pankisi Gorge'
	link[2] = '<A href="/time/europe/eu/daily/0,13716,102673,00.html">Hijacking Highlights Ongoing Chechnya Conflict</A> <I>03/15/01</I><BR>Cell Phone From Moscow: TIME correspondent Andrew Meier says that whether or not they\'re behind the latest hijacking, the guerrillas are Chechnya\'s only optimists'
	link[3] = '<A href="/time/europe/eu/daily/0,13716,102790,00.html">nside Grozny: Dodging Bullets with King Kong</A> <I>03/16/01</I><BR>TIME\'s Moscow bureau chief Paul Quinn-Judge went on assignment in the Chechen capital, and found that the battle to control it never ended'
	link[4] = '<A href="/time/europe/eu/daily/0,13716,102767,00.html">Hijacking Resolved, But Chechnya Simmers On</A> <I>03/16/01</I><BR>Cell Phone From Moscow: TIME correspondent Andrew Meier says that while the Saudis have saved Moscow an embarrassment, the Chechen conflict continues'
	link[5] = '<A href="/time/europe/eu/magazine/0,13716,103995,00.html">In the Ruins of Grozny</A> <I>03/28/01</I><BR>The Kremlin says it is winning hearts and minds in Chechnya. The people of embattled Grozny might disagree'
	link[6] = '<A href="/time/europe/eu/daily/0,13716,104886,00.html">Who\'s On Trial?</A> <I>04/03/01</I><BR>What the trial of a Russian colonel for the murder of a Chechen girl says about the state of Russia'
	link[7] = '<A href="/time/europe/eu/magazine/0,13716,129064,00.html">Guerrillas In Grozny</A> <I>06/14/01</I><BR>The conflict in Chechnya is heating up again as an increase in rebel activity undermines Moscow'
	link[8] = '<A href="/time/europe/eu/daily/0,13716,167348,00.html">All Things Come To Those Who Wait</A> <I>07/12/01</I><BR>Is Milosevic\'s extradition to the Hague a sign of things to come in Chechnya?'
	link[9] = '<A href="/time/europe/eu/daily/0,13716,167348,00.html"></A><A href="/time/europe/eu/interview/0,13716,189499,00.html" >Can the U.S.-Russian Alliance Last?</A> <I>12/21/01</I><BR> Despite improved ties, Moscow and Washington still have a lot to disagree about'
	link[10] = '<A href="/time/europe/magazine/article/0,13005,901020401-219938,00.html">The Forbidden Valley</A> <I>03/27/02<BR></I>The Pankisi Gorge is close to Georgia\'s border with Chechnya. Russia says Chechen rebels are in hidng there.'
	link[11] = '<A href="/time/europe/eu/magazine/0,13716,220819,00.html">The Way We (Never) Were</A> <I>03/29/02</I><BR>Russian TV depicts a heroic version of the war in Chechnya'
	link[12] = '<A href="/time/europe/eu/daily/0,13716,234891,00.html">Death of a Warlord</A> <I>05/02/02</I><BR>Russia rejoices at death of the leading Arab fighter in Chechnya, though the circumstances of his killing remain a mystery'
	link[13] = '<A href="/time/europe/eu/daily/0,13716,237836,00.html">Another Deadly Blast</A> <I>05/15/02</I><BR>More than 40 people killed, 130 injured after a bomb explodes at a Victory Day parade in Dagestan'
	link[14] = '<A href="/time/europe/magazine/2002/1104/cover/chronology.html"> How Did It Get To This?</A> <I>11/04/02</I><BR>A chronology of the Chechen conflict'
	link[15] = '<A href="/time/europe/magazine/2002/1104/cover/mosvar.html">The Man Who Would Be Martyred</A> <I>11/04/02</I><BR>Those who knew Chechen rebel leader Movsar Barayev say he came to Moscow to die'
	link[16] = '<A href="/time/europe/magazine/2002/1104/cover/story.html">Theatre of War</A> <I>11/04/02</I><BR> Inside the raid that took the lives of over 90 hostages and 50 of their captors'
	link[17] = '<A href="/time/europe/magazine/article/0,13005,901021118-388914,00.html">The Next Siege</A> <I>11/18/02</I><BR>The &eacute;lite Russian troops who stormed the Moscow theater head to Chechnya to hunt down rebels'
	link[18] = '<A href="/time/europe/eu/daily/0,13716,390353,00.html">Money Talks</A> <I>11/14/02</I><BR>Chechen guerrillas easily bribe their way through Russia\'s capital, and may already be planning their next strike'
	link[19] = '<A href="/time/europe/eu/column/0,13716,419946,00.html">Living on a Powder Keg</A> <I>02/06/03</I><BR>The forgotten link between Chechen terrorism and the war in Chechnya'
	link[20] = '<A href="/time/europe/magazine/article/0,13005,901030721-464414,00.html">Awfully Familiar</A> <I>21/07/03</I><BR>The war in Chechnya &#151; now sending suicide bombers to Moscow &#151; is becoming Russia\'s version of Palestine'


	
// --   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++
		}
		
}