	// --   set up global variables
	var avail = new Array()
	var para = new Array()
	i = n = 0
	
	// --   Available items
	para[0] = '<TABLE width="90%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="par"><IMG src="images/66s.gif" width="15" height="14" align="bottom" hspace="3">I remember that bikini coming out of the water and thinking how beautiful Ursula Andress was. I thought, \'Wow! Wouldn\'t it be great to be like her?<IMG src="images/99s.gif" width="15" height="14" align="texttop" hspace="3"></TD></TR><TR><TD width="15%"></TD><TD width="85%" valign="top" class="parqualific"><DIV class="parcredit">HALLE BERRY,</DIV>who sports a bright orange bikini in <I>Die Another Day</I></TD></TR></TABLE>'
	para[1] = '<TABLE width="90%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="par"><IMG src="images/66s.gif" width="15" height="14" align="bottom" hspace="3">Bond has always been a brand-aware character<IMG src="images/99s.gif" width="15" height="14" align="texttop" hspace="3"></TD></TR><TR><TD width="15%"></TD><TD width="85%" valign="top" class="parqualific"><DIV class="parcredit">DAVID WILSON,</DIV>Vice President, EON, the production house behind 007</TD></TR></TABLE>'
	para[2] = '<TABLE width="90%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="par"><IMG src="images/66s.gif" width="15" height="14" align="bottom" hspace="3">It\'s hard to plan. Not knowing what\'s around the corner is one of the joys of being an actor<IMG src="images/99s.gif" width="15" height="14" align="texttop" hspace="3"></TD></TR><TR><TD width="15%"></TD><TD width="85%" valign="top" class="parqualific"><DIV class="parcredit">PIERCE BROSNAN,</DIV>on why he may not do a sixth Bond film</TD></TR></TABLE>'
	para[3] = '<TABLE width="90%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="par"><IMG src="images/66s.gif" width="15" height="14" align="bottom" hspace="3">For 24 hours, 7 days a week, Bond is all you do. Then suddenly you don\'t have 400 people hanging around the studios, and you miss that<IMG src="images/99s.gif" width="15" height="14" align="texttop" hspace="3"></TD></TR><TR><TD width="15%"></TD><TD width="85%" valign="top" class="parqualific"><DIV class="parcredit">TONY WAYE,</DIV><I>Die Another Day</I> executive producer on coming down to earth</TD></TR></TABLE>'
	para[4] = '<TABLE width="90%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="par"><IMG src="images/66s.gif" width="15" height="14" align="bottom" hspace="3">Do it! Do it! It\'s a fun film!.<IMG src="images/99s.gif" width="15" height="14" align="texttop" hspace="3"></TD></TR><TR><TD width="15%"></TD><TD width="85%" valign="top" class="parqualific"><DIV class="parcredit">KIRK DOUGLAS,</DIV>urging Ursula Andress to be the first Bond Girl in <I>Dr No</I> </TD></TR></TABLE>'
	para[5] = '<TABLE width="90%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="par"><IMG src="images/66s.gif" width="15" height="14" align="bottom" hspace="3">What I really need is an ejection seat, so that if the journalists are bad, I can just press a button and they\'ll go whooooo ...<IMG src="images/99s.gif" width="15" height="14" align="texttop" hspace="3"></TD></TR><TR><TD width="15%"></TD><TD width="85%" valign="top" class="parqualific"><DIV class="parcredit">HALLE BERRY,</DIV>on how she\'d really like to treat reporters</TD></TR></TABLE>'
	para[6] = '<TABLE width="90%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="par"><IMG src="images/66s.gif" width="15" height="14" align="bottom" hspace="3">I\'m quite a bit older and chubbier and I don\'t have the steel teeth<IMG src="images/99s.gif" width="15" height="14" align="texttop" hspace="3"></TD></TR><TR><TD width="15%"></TD><TD width="85%" valign="top" class="parqualific"><DIV class="parcredit">RICHARD KIEL,</DIV>still surprised at being spotted as Bond super-henchman Jaws in the street</TD></TR></TABLE>'
	para[7] = '<TABLE width="90%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="par"><IMG src="images/66s.gif" width="15" height="14" align="bottom" hspace="3">Sometimes you\'d say "Oh God, I wish I had a scene of depth to do." But then I\'d get the paycheck.<IMG src="images/99s.gif" width="15" height="14" align="texttop" hspace="3"></TD></TR><TR><TD width="15%"></TD><TD width="85%" valign="top" class="parqualific"><DIV class="parcredit">ROGER MOORE,</DIV>on being Bond, James Bond, more often than anyone else</TD></TR></TABLE>'
	para[8] = '<TABLE width="90%" border="0" cellspacing="0" cellpadding="0"><TR><TD colspan="2" class="par"><IMG src="images/66s.gif" width="15" height="14" align="bottom" hspace="3">I\'m still an actress who is going to be looking for work again.<IMG src="images/99s.gif" width="15" height="14" align="texttop" hspace="3"></TD></TR><TR><TD width="15%"></TD><TD width="85%" valign="top" class="parqualific"><DIV class="parcredit">ROSAMUND PIKE,</DIV>on fleeting fame as a Bond girl</TD></TR></TABLE>'
	// --   generate urls
	
while ( i < 999 ) {
	// -- pick a number, any number ...
	var a = Math.round(Math.random() * 9)
	// -- Is the item a). available and b). an item at all ...
	if (avail[a] != 'no' && para[a] != null) {
			avail[a] = 'no'
			document.write (
				para[a]
			)
			// -- have we reached the display limit?
			if (n > displayTotal - 2) {
				// -- If yes, this fails out of the loop
				i = 1000
			}
			n++
		}
		i++
}