var total1 = 8;
var counter1 = 0;
var titles= new Array();
var urls= new Array();

titles[1] = "Home";
urls[1] = "/index.html";
titles[2] = "Services";
urls[2] = "/services/services.html";
titles[3] = "Support";
urls[3] = "/mysupport/index.html";
titles[4] = "Hosting";
urls[4] = "/hosting/hosting.html";
titles[5] = "Reference";
urls[5] = "/reference/reference.html";
titles[6] = "Newsletter";
urls[6] = "/newsletter/newsletter.shtml";
titles[7] = "Payments";
urls[7] = "http://www.star1web.com/InvoicePayment.html";
titles[8] = "GO BACK";
urls[8] = "javascript:window.history.back()";

document.writeln("<TABLE WIDTH='78' CELLSPACING='0' CELLPADDING='2'");

for (counter1=1;counter1<total1+1;counter1++){
document.writeln("<TR><TD HEIGHT='26px'	BACKGROUND='http://www.star1web.com/graphics/buttons/gbutton1b.jpg' ALIGN='CENTER' CLASS='td_button' VALIGN='MIDDLE' WIDTH='77'><A HREF='"+urls[counter1]+"'><FONT SIZE='2'>"+titles[counter1]+"</FONT></A></TD></TR>"); 
}
document.writeln("</TABLE>");

