	// --   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/article/0,13716,166111,00.html">Revenge of the Legal Nerds<BR></A> How woolly-headed ideas, with an assist from globalization, felled Milosevic <I>07/09/01</I>'

	link[1] = '<A href="/time/europe/eu/article/0,13716,169911,00.html">Milosevic Throws Down the Gauntlet<BR></A> The Serb strongman\'s snarling defiance hints at the political problems posed by his trial  <I>07/20/01</I>'

	link[2] = '<A href="/time/europe/eu/article/0,13716,166161,00.html">Zoran Djindjic &#151; Architect of Extradition<BR></A> In a TIME Exclusive, Serbia\'s Prime Minister talks about putting Milosevic on trial &#151; and the nightmares Yugoslavia still faces  <I>08/18/01</I>'

	link[3] = '<A href="/time/europe/eu/article/0,13716,169911,00.html">Serving Justice<BR></A> TIME talks to war crimes prosecutor Mark Harmon <I>09/17/01</I>'

	link[4] = '<A href="/time/europe/eu/article/0,13716,173515,00.html">Global Justice<BR></A> Charging Slobodan Milosevic with genocide may just be the start of a new approach to war crimes <I>09/17/01</I>'

	link[5] = '<A href="/time/europe/eu/article/0,13716,202726,00.html">His Day in Court issue dated<BR></A> The Trial of Slobodan Milosevic <I>02/18/02</I>'

	link[6] = '<A href="/time/europe/eu/article/0,13716,202726,00.html">Witness for the Prosecution<BR></A> An interview with former Yugoslav President Zoran Lilic <I>02/13/02</I>'

	link[7] = '<A href="/time/europe/magazine/article/0,13005,901020930-353524,00.html">Star Power in Serbia<BR></A> Slobodan Milosevic\'s performance at his war-crimes trial has won him increased popularity at home <I> 	Issue dated 09/30/02</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++

		}

		

}