
function writecataloglinkline(sectionname,sectionindex) {
    document.write("<a href=\"catalog.html?"+sectionindex+"\">"+sectionname+"</a><br>");
}

document.write( "<center>" +
                "<table cols=2 border=0 cellpadding=2 cellspacing=2 width=640>" +
                "<tr>" +
                "    <td colspan=3 valign=top>" +
                "        <font face=\"arial\" color=#004688 size=1>" +
                "        <center>" +
                "        <a href=\"index.html\"><img src=\"image/title.gif\" width=390 height=59 border=0 alt=\"Store\"></a>" +
                "        </center>" +
                "    </td>" +
                "</tr>" +

                "<tr>" +
                "    <td valign=top align=center width=11% bgcolor=#F0F0F0>" +

                "        <font face=\"arial\" color=#004688 size=2><strong>" +
                "        Sections</strong></font><br>" +
                "        <font face=\"arial\" color=#004688 size=1>");

{
    catsec = -1;
    if (window.location.href.indexOf("catalog.html")>0)
        catsec = parseInt(window.location.search.substring(1));

    for (i=0;i<numSections;i++) {
        if (i==catsec)
            document.write(Sections[i].name + "<br>");
        else
            writecataloglinkline(Sections[i].name,i);
    }
}

document.write( "</font><br><font face=\"arial\" color=#004688 size=2><strong>" +
                "Help</strong></font><br>" +
                "<font face=\"arial\" color=#004688 size=1>");

if (window.location.href.indexOf("about.html")>0)
    document.write("Store?<br>");
else
    document.write("<a href=\"about.html\">Store?</a><br>");

if (window.location.href.indexOf("service.html")>0)
    document.write("Service<br>");
else
    document.write("<a href=\"service.html\">Service</a><br>");

document.write( "<br></font></td><td valign=top width=74%>");







