{
  var j = 0
  var col_ct = 8
  var col_pct = Math.floor(100/col_ct)-2
  var col_links = new Array()
  col_links[0] = "index"
  col_links[1] = "abtwales"
  col_links[2] = "abouttrans"
  col_links[3] = "aboutwarp"
  col_links[4] = "aboutcsi"
  col_links[5] = "aboutsff"
  col_links[6] = "photos"
  col_links[7] = "misclink"
  var col_gotos = new Array()
  col_gotos[0] = "to return to the main page"
  col_gotos[1] = "for info about my interest in Wales, Welsh societies, etc."
  col_gotos[2] = "for info about transportation issues and resources in Portland and the SF Bay Area"
  col_gotos[3] = "for info about why I use OS/2 Warp technology when I can"
  col_gotos[4] = "for info about various on-line services I have been involved with"
  col_gotos[5] = "info about my favorite Science Fiction and Fantasy stuff"
  col_gotos[6] = "to see my photo galleries"
  col_gotos[7] = "for links to other things I find interesting or useful"
  var col_alts = new Array()
  col_alts[0] = "Home Page"
  col_alts[1] = "Wales Page"
  col_alts[2] = "Transit Page"
  col_alts[3] = "OS/2 Page"
  col_alts[4] = "Online Page"
  col_alts[5] = "Science Fiction Page"
  col_alts[6] = "Galleries"
  col_alts[7] = "Misc. Links"
  var col_imgs  = new Array()
  col_imgs[0] = "seagull.gif"
  col_imgs[1] = "ddraig.gif"
  col_imgs[2] = "translgo.gif"
  col_imgs[3] = "os2logo.gif"
  col_imgs[4] = "smlcsi.gif"
  col_imgs[5] = "cblamik7.gif"
  col_imgs[6] = "snapshot.gif"
  col_imgs[7] = "etcetera.gif"
  var col_texts = new Array()
  col_texts[0] = "Home"
  col_texts[1] = "Wales &amp; Welsh"
  col_texts[2] = "Public Transportation"
  col_texts[3] = "OS/2 Technology"
  col_texts[4] = "On-line Services"
  col_texts[5] = "SciFi/Fantasy Media/Lit."
  col_texts[6] = "Image Gallery"
  col_texts[7] = "Misc. Links"
  var col_flags = new Array()
  col_flags[0] = ""
  col_flags[1] = ""
  col_flags[2] = ""
  col_flags[3] = "updated"
  col_flags[4] = ""
  col_flags[5] = ""
  col_flags[6] = "new"
  col_flags[7] = ""

  document.write("<table style=\"page-break-inside: avoid;\" border=\"1\" cellpadding=\"2\" cellspacing=\"2\" width=\"100%\" align=\"center\">")
  for (i=0; i<col_ct; i++)
  {
    document.write("<col width=\""+col_pct+"%\" />")
  }
  document.write("<tbody><tr>")
  for (i=0; i<col_ct; i++)
  {
    document.write("<td align=\"center\"><p><a href=\"")
    document.write(col_links[i])
    document.write(".html\" name=\"i")
    document.write(col_links[i])
    document.write("\" target=\"_self\" onmouseover=\"window.status='Click here ")
    document.write(col_gotos[i])
    document.write("'; return true\" onmouseout=\"window.status=''; return true\">")
    document.write("<img src=\"")
    document.write(col_imgs[i])
    document.write("\" alt=\"Go to ")
    document.write(col_alts[i])
    document.write("\" name=\"g")
    document.write(col_links[i])
    document.write("\" style=\"border: 0px solid; width: 96px; height: 44px;\" />")
    document.write("</a></p></td>")
  }
  document.write("</tr><tr>")
  for (i=0; i<col_ct; i++)
  {
    document.write("<td align=\"center\"><p><a href=\"")
    document.write(col_links[i])
    document.write(".html\" name=\"t")
    document.write(col_links[i])
    document.write("\" target=\"_self\" onmouseover=\"window.status='Click here ")
    document.write(col_gotos[i])
    document.write("'; return true\" onmouseout=\"window.status=''; return true\">")
    document.write("[&#160;")
    document.write(col_texts[i])
    document.write("&#160;]")
    if (col_flags[i] != "")
    {
      document.write("<br /><img src=\"")
      if (col_flags[i] == "new")
      {
        document.write("newitem.gif")
      }
      else 
      {
        document.write("updated.gif")
      }
      document.write("\" name=\"img"+(j++)+"\" alt=\"")
      if (col_flags[i] == "new")
      {
        document.write("New")
      }
      else
      {
        document.write("Updated")
      }
      document.write("\" align=\"bottom\" border=\"0\" height=\"17\" width=\"64\" />")
    }
  }
  document.write("</tr></tbody></table>")
}
