quotes = new Array(6);
quotes[0]="Which is better, an IRA or a 401(k)?";
quotes[1]="Should I cut up my old credit cards?";
quotes[2]="How much money do I need to retire?";
quotes[3]="Where can I find a new credit card?";
quotes[4]="How can I make money with my credit card?";
quotes[5]="What is an App-O-Rama?";
quotes[6]="Where can I discuss financial information?";
 
links = new Array(2);
links[0]="retirement-funds.html";
links[1]="longevity.html";
links[2]="how-much-do-i-need.html";
links[3]="creditcardoffers.html";
links[4]="zero-interest.html";
links[5]="apporama.html";
links[6]="http://twentiesretirement.com/forum/";

/* calculate a random index */
index = Math.floor(Math.random() * quotes.length);
/* display the link */
document.write("<DT>" + "<a href=\"" + links[index] + "\"> " + quotes[index] + "</a>\n");
document.write("</DL>\n");