	// --   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,102767,00.html">Hijacking Resolved, But Chechnya Simmers On</A>: The Saudis save Moscow an embarrassment, the Chechen conflict continues  <FONT size="-1"><I>03/16/01</I></FONT>' 
	
	link[3] = '<A href="/time/europe/me/magazine/0,13716,132807,00.html">Khobar Bombing Indictment Highlights Bush Iran Dilemma</A>: Tehran is linked with the killing of 19 Americans at Khobar Towers. But with reformists battling for Iran\'s soul, can the U.S. retaliate?  <I><FONT size="-1">10/22/01</FONT></I>'
	
	link[4] = '<A href="/time/europe/me/magazine/0,13716,182842,00.html">With Friends Like These</A>: How Washington’s war on terror is exposing dangerous rifts in Saudi-American relations<FONT size="-1"><I>11/12/01</I></FONT>'
	
	link[5] = '<A href="/time/europe/me/magazine/0,13716,178502,00.html">Saudi Arabia Accepts Bin Laden\'s Guilt</A>: The Saudi Foreign Minister says the evidence demonstrates that bin Laden is behind the Sept. 11 terror attacks  <I><FONT size="-1">01/08/02</FONT></I>'
	
	link[6] = '<A href=" /time/europe/me/magazine/0,13716,179545,00.html">A Royal Ruckus</A>: Saudi Arabia\'s Prince Alwaleed bin Talal went to New York with a $10 million gift and left in a cloud of misunderstanding  <FONT size="-1"><I>01/18/02</I></FONT>'
	
	link[7] = '<A href="/time/europe/me/magazine/0,13716,212733,00.html">\'America Cannot fight this war alone\'</A>: Crown Prince Abdullah talked exclusively to TIME\'s Scott MacLeod<FONT size="-1"><I> 02/25/02</I></FONT>'
	
	link[8] = '<A href="/time/europe/magazine/article/0,13005,901020304-212732,00.html">Royal Plans</A>: Crown Prince Abdullah is trying to solve his country\'s problems &#151; and develop a peace plan for the region <FONT size="-1"><I>01/18/02</I></FONT>'
	
	link[10] = '<A href="/time/world/article/0,8599,331980,00.html">Do We Still Need the Saudis?</A>: Oil has sustained the alliance between the U.S. and Saudi Arabia for decades. But extremism in the kingdom is putting those ties to the test <FONT size="-1"><I>7/28/02</I></FONT>'
	
	link[11] = '<A href="/time/world/article/0,8599,339675,00.html">Are Saudi Billions Leaving America?</A>: The Saudis may take their money and run. Initial reports are dismissed as alarmist, but somebody may be trying to send Washington a message. Should we care?<FONT size="-1"><I>8/23/02</I></FONT>'
	
	link[12] = '<A href="/time/nation/article/0,8599,393590,00.html">Feds Doubt Allegations of Saudi Terror Funding</A>: Although Royal charity money may have reached a roommate of 9/11 hijackers, U.S. officials say even he was unaware his friends were terrorists<FONT size="-1"><I>11/24/02</I></FONT>'
	
	link[13] = '<A href="/time/world/article/0,8599,408784,00.html">The Saudi Push for an Iraq Coup</A>: <SPAN class="date">TIME Exclusive: </SPAN>Arab leaders hope to head off a war with a plan to facilitate Saddam\'s overthrow by his own generals<FONT size="-1"><I>01/17/03</I></FONT>'
	
	link[14] = '<A href="/time/world/article/0,8599,419297,00.html">The Saudi Initiative Explained</A>: <SPAN class="date">TIME Exclusive: </SPAN>Foreign Minister Prince Saud al Faisal outlines for the first time a Saudi proposal to end Saddam Hussein\'s rule<FONT size="-1"><I>02/04/03</I></FONT>'
	
	link[15] = '<A href="/time/europe/html/030526/saudi.html">Time\'s Up</A>: As al Qaeda selects new targets Saudi royals realize they can no longer bury their heads in the sand'
	
	link[16] = '<A href="/time/magazine/article/0,9171,1101030915-483269,00.html">Inside the Secret Kingdom</A>: The Saudis are finally cracking down on terrorists at home. But is the Saudi brand of Islam compatible with the war on terror?'
	
	link[17] = '<A href="/time/world/article/0,8599,484593,00.html">The Saudis Respond</A>: <SPAN class="date">TIME Exclusive:</SPAN> Defending Saudi Arabia against criticism, Riyadh\'s Foreign Minister warns of an \"insurmountable gulf\" in U.S.-Saudi relations'
	
	link[18] = '<A href="/time/world/article/0,8599,484593,00.html">An Arabian Nightmare</A>: The Saudi kingdom is corrupt and doomed and cannot be trusted, says a former CIA agent'
		
	link[19] = '<A href="/time/world/article/0,8599,484593,00.html">Keys to the Kingdom</A>: Founded by religious warriors and made wealthy by oil, Saudi Arabia struggles to face its homegrown ties to terrorism'

	link[20] = '<A href="/time/world/article/0,8599,484593,00.html">Wahhabism &#151 Toxic Faith?</A>: Religious movements often originate in a dream. It was said in Arabia in the 1800s that a man in Najd province dreamed that his body produced flames that spread far and wide, consuming desert camps...'	
	
// --   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++
		}
		
}