var title = new Array("FirstSpot&reg; home page", "FAQ", "Download Trial", "Pre-sales Support Forum","Buy Now!");
var links = new Array("./index.html", "./faq.php", "./download_trial.html", "/forum","./buy_now.html");
var index = 0;

for (index = 0; index <= (title.length - 1); index++)
{
    if (title[index]=="Buy Now!") {
       document.write("<a class=\"top_links\" href=\"" + links[index] + "\"><font color=\"#FF0000\">" + title[index] + "</font></a>");
    }
    else{
       document.write("<a class=\"top_links\" href=\"" + links[index] + "\">" + title[index] + "</a> &nbsp;&nbsp;&middot;&nbsp;&nbsp; ");
    }
}

if (document.URL == "http://patronsoft.com/firstspot/buy_now.html" || document.URL =="http://www.patronsoft.com/firstspot/buy_now.html") 
{
    document.write(" &nbsp;&nbsp;&middot;&nbsp;&nbsp; <a class=\"top_links\" href=\"/firstspot/refund.htm\">Refund Policy</a><br><br>");       
}
else{
    document.write("<br><br>");
}