	// --   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 have great respect for Ralph, I really do. When I was a child in the Bronx, I would see him and think, \'Who is this person? Who dresses like 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">CALVIN KLEIN,</DIV>on Ralph Lauren\'s 35th anniversary</TD></TR></TABLE><BR><BR>'
	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">I wouldn\'t say our editors are knee-deep in graft. Now we get return phone calls, but we still don\'t always get the Miu Miu top in the color we wanted.<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">KIM FRANCE,</DIV>editor-in-chief of Lucky, on industry response to her magazine/catalog</TD></TR></TABLE><BR><BR>'
	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">I love the exotic Chinese cock in the country. I wear it. I eat it. I want to be buried in it.<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">ISABELLA BLOW,</DIV>on her favorite Philip Treacy hat</TD></TR></TABLE><BR><BR>'
	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">I wanted to go up to these women and shake them and say, \'Let him do your makeup!\'<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">THELMA AUCOIN,</DIV>Kevyn Aucoin\'s mother on the late makeup artist\'s early days in Georgia</TD></TR></TABLE><BR><BR>'
	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">I like the bar code on Drew\'s ass.<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">VERONIQUE KOLASA,</DIV>Founder of Le Book, evaluating the September cover of Harper\'s Bazaar</TD></TR></TABLE><BR><BR>'
	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">Because I deserve one.<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">ALEXANDER McQUEEN,</DIV>fashion designer, on why he wants a child</TD></TR></TABLE><BR><BR>'
	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 came in for an interview. He looked through my sketches and asked me how I would dress a summer wedding in the Hamptons. I didn\'t have a clue &#0151; I was more interested in making a sexy evening dress for Iman<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">TOM FORD,</DIV>on his job interview with Bill Blass, at age 25</TD></TR></TABLE><BR><BR>'
	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">If you are so worried that you have to cut your face up to make yourself happier, you\'re with the wrong guy.<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">JERRY HALL,</DIV>actress, on cosmetic surgery and men</TD></TR></TABLE><BR><BR>'
	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">Sewing on buttons.<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">PHOEBE PHILO,</DIV>Chlo&eacute;\'s designer, when asked what she is good at</TD></TR></TABLE><BR><BR>'
	// --   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++
}