	// --   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,203029,00.html">Theatre of War Crimes<br /></a> The trial of former Yugoslav President Slobodan Milosevic has much of the theatre about it <i>02/12/02</i>'

	link[1] = '<a href="/time/europe/eu/article/0,13716,203031,00.html">Slobodan\'s Challenge<br /></a> The former Yugoslav President insists the Hague war crimes tribunal is illegal <i>02/13/02</i>'

	link[2] = '<a href="/time/europe/eu/article/0,13716,203224,00.html">I Was NATO\'s Victim<br /></a> Former Yugoslav president denounces his trial as an inquisition, saying he was the victim of NATO aggression <i>02/14/02</i>'

	link[3] = '<a href="/time/europe/eu/article/0,13716,203365,00.html">Lining Up His Witnesses<br /></a> The  offensive against the war crimes tribunal and the West continues <i>02/15/02</i>'

	link[4] = '<a href="/time/europe/eu/article/0,13716,203652,00.html">Milosevic &#0151; Man of Peace<br /></a> The former president rounds up his opening words <i>02/19/02</i>'

	link[5] = '<a href="/time/europe/eu/article/0,13716,211541,00.html">Attack in Defence<br /></a> The prosecution\'s first witness comes in for a grilling <i>02/20/02</i>'

	link[6] = '<a href="/time/europe/eu/article/0,13716,212306,00.html">The Victims Speak<br /></a> The first Kosovo Albanians testify against the former President <i>03/01/02</i>'

	link[7] = '<a href="/time/europe/eu/article/0,13716,213874,00.html">The Horror, The Horror<br /></a> More harrowing stories from the Hague as several ethnic Albanian victims from Kosovo testify against Slobodan Milosevic <i>03/01/02</i>'

	link[8] = '<a href="/time/europe/eu/article/0,13716,335535,00.html">Truth or Consequences<br /></a> Milosevic\'s predecessor as Yugoslav President, Zoran Lilic, says he wants to testify against him &#151; but it\'s not easy  <i>08/09/02</i>'

	link[9] = '<a href="/time/europe/eu/article/0,13716,336478,00.html">Definitely Not With A Whimper<br /></a> The trial of Slobodan Milsoevic concluded with a security chief\'s testimony against his former boss <i>08/13/02</i>'

	link[10] = '<a href="/time/europe/eu/article/0,13716,336467,00.html">Matters of the Heart<br /></a> Milosevic\'s heart condition is serious enough that judges are urging him to consider hiring a lawyer to ease his workload <i>08/20/02</i>'

	link[11] = '<a href="/time/europe/eu/article/0,13716,350307,00.html">The Prosecution Rests<br /></a> The Kosovo case against Milosevic has been presented. Next up: Bosnia and Croatia <i>09/04/02</i>'

	link[12] = '<a href="/time/europe/eu/article/0,13716,355853,00.html">He\'s Back ...<br /></a> Prosecutors at the Yugoslav war crimes Tribunal opened the second part of their case against Slobodan Milosevic <i>09/27/02</i>'

	link[13] = '<a href="/time/europe/eu/article/0,13716,356760,00.html">Presidential Face-Off<br /></a> Yugoslavia\'s last president testifies against Milosevic <i>10/02/02</i>'

	link[14] = '<a href="/time/europe/eu/article/0,13716,357856,00.html">Fighting Over History<br /></a> Slobodan Milosevic and Croatian president Stipe Mesic battle it out in court <i>10/03/02</i>'

	link[15] = '<a href="/time/europe/eu/article/0,13716,357779,00.html">Slobo\'s View<br /></a> Milosevic claims the French were responsible for Srebrenica <i>10/04/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++

		}

		

}