<!-- Standard index generation javascript -->

var td_no = 0;

function alphabet_index()
{
   var curr_lett = " "; var this_lett = " ";
   var i=0;
   document.write("<p>&nbsp;");
   while (i<pi.length)
   {
       p = pi[i].split("/~");
       this_lett = p[0].charAt(0);
       if (this_lett != curr_lett)
       {
           curr_lett = this_lett;
           document.write ("<a href='#index_" + curr_lett + "'>" +
                            curr_lett + "</a>&nbsp;");
       }
       ++i;
   }
   document.write("</p>");
}

function write_headings()
{
   document.write("<a name='top'>");
   document.write("<table border=0 cellspacing=0 cellpadding=0>");
   document.write("<tr>");
   document.write("<td class=TD0C width=150><img src='common/sunshinet.gif' border=0></td>");
   document.write("<td class=HEAD1>Player Profiles</td>");
   document.write("<td class=TD0C width=150><img src='common/sat_logo.gif' border=0></td>");
   document.write("</tr>");
   document.write("<tr>");
   document.write("<td class=HEAD2 colspan=3><span class=PT12>Index of Player Profiles</span></td>");
   document.write("</tr>");
   document.write("</table>");
   document.write("<p>");
   alphabet_index();
}

function write_players()
{
   document.write("<div align=center>");
   document.write("<table border=0 cellspacing=6 cellpadding=0 align=center>");
   document.write("<tr><td class=TD0L>");
   var curr_lett = " ";
   var this_lett = " ";
   var i=0;
   while (i<pi.length)
   {
       p = pi[i].split("/~");
       this_lett = p[0].charAt(0);
       if (this_lett != curr_lett)
       {
           curr_lett = this_lett;
           if (i > 0)
               document.write ("<div class=FOOT1><a href='#top'>Top of Page</a></div><br>");
           document.write("<a name='index_" + curr_lett + "'>");
       }
       document.write("<a href='" + p[3] + ".htm'>");
       document.write("<b>" + p[0] + "</b>, " + p[1]);
       if (p[2] != "")
           document.write(" (" + p[2] + ")");
       document.write("</a><br>");
       i++;
   }
   if (i > 0)
       document.write ("<div class=FOOT1><a href='#top'>Top of Page</a></div><br>");
   document.write("</td></tr></table>");
   document.write("</div>");
}

function write_footing()
{
   document.write("<div align=center>");
   document.write("<table border=0 cellspacing=0 cellpadding=4 align=center>");
   document.write("<tr><td class=TDPIC>");
   document.write("<div class=FOOT1>");
   document.write("<br>&nbsp;<br><b>" +
                  "Last updated " + general.cr_date + "</b>");
   document.write("<br>&nbsp;<br>" +
                  "Statistics provided by the " + general.tourname);
   document.write(". All rights reserved.");
   if (typeof page_count != "undefined")
       document.write("<br>Page visited " + page_count + " times");
   document.write("</div>");
   document.write("</td></tr></table>");
   document.write("</div>");
}

function write_index()
{
   write_headings();
   write_players();
   write_footing();
}

<!-- End of standard profile generation javascript -->

