	// --   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,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/magazine/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/magazine/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/magazine/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/magazine/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/magazine/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/magazine/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/magazine/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/daily/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/daily/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/magazine/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/magazine/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/magazine/0,13716,355853,00.html">He\'s Back ...</A><BR> 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/daily/0,13716,356760,00.html">Presidential Face-Off</A><BR> Yugoslavia\'s last president testifies against Milosevic <I>10/02/02</I>'
	link[14] = '<A href="/time/europe/eu/magazine/0,13716,357856,00.html">Fighting Over History</A><BR> Slobodan Milosevic and Croatian president Stipe Mesic battle it out in court <I>10/03/02</I>'
	link[15] = '<A href="/time/europe/eu/daily/0,13716,357779,00.html">Slobo\'s View</A> <BR> 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++
		}
		
}