<!--
var sentenceArray = new makeArray('"It\'s about time we had a tennis store in midtown."<BR>     <b>Geoff</b>',
								  '"Yonex racquets?  I can\'t find those anywhere in Atlanta."<BR>     <b>Bill</b>',
								  '"The tennis clothing assortment is much better than our club\'s pro shop."<BR>     <b>Margaret</b>',
								  '"Kewl"<BR>   <b>Jerami</b>',
								  '"Nobody else carries Men\'s small sizes.  Thank you."<BR>     <b>Chris</b>',
								  '"Your staff is knowledgeable and helpful.  Good Luck."<BR>     <b>Katie</b>',
								  '"24 hour turnaround on racquet stringing?  That\'s it?  I\'ll bring all my racquets here."<BR>    <b>John</b>',
								  '"Now I don\'t have to buy my tennis balls at the grocery store on Saturday mornings."<BR>     <b>Tom</b>',
								  '"Cute clothes.  I\'ll tell all my teammates about you."<BR>     <b>Anne</b>');
function makeArray(){
this.length = makeArray.arguments.length
for (var i = 0; i < this.length; i++)
this[i + 1] = makeArray.arguments[i]
}
function randNum (num) {
var now = new Date();
var rand = Math.round(num * Math.cos(now.getTime()));
if (rand < 0) rand = - rand; if (rand == 0) rand++;
return rand;
}
// -->

document.write (sentenceArray[randNum(sentenceArray.length)]) 










