<!--
// Create arrays to contain all the values 
// for links and text locations
link = new Array
txt = new Array

link[1]="didyou/iracd.html"
txt[1]="You can save on taxes by opening a flexible IRA CD and make contributions anytime? Click here."

link[2]="didyou/iracd.html"
txt[2]="You can save on taxes by opening a flexible IRA CD and make contributions anytime? Click here."

link[3]="didyou/iracd.html"
txt[3]="You can save on taxes by opening a flexible IRA CD and make contributions anytime? Click here."

link[4]="didyou/iracd.html"
txt[4]="You can save on taxes by opening a flexible IRA CD and make contributions anytime? Click here."

link[5]="didyou/iracd.html"
txt[5]="You can save on taxes by opening a flexible IRA CD and make contributions anytime? Click here."

link[6]="didyou/iracd.html"
txt[6]="You can save on taxes by opening a flexible IRA CD and make contributions anytime? Click here."

link[7]="didyou/iracd.html"
txt[7]="You can save on taxes by opening a flexible IRA CD and make contributions anytime? Click here."

link[8]="didyou/iracd.html"
txt[8]="You can save on taxes by opening a flexible IRA CD and make contributions anytime? Click here."


// Create a random number between 1 and seven
random_num = (Math.round((Math.random()*7)+1))


// Write a link and texts with random array
document.write("<a href=\"" + link[random_num] + "\">");
document.write(txt[random_num] + "</a>");
-->