<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<head>
  <link rel="stylesheet" type="text/css" href="http://apotheon.net/rpg/main.css" />
  <title>Character Lineup</title>

  <script language="javascript" type="text/javascript">
    function show_hide(id){
      if (document.getElementById) {
        obj = document.getElementById(id);

        if (obj.style.display == 'none') {
          obj.style.display = 'block';
        } else {
          obj.style.display = 'none';
        }
      }
    }
  </script>
</head>
<body>

<%
  path = File.dirname(__FILE__)
  require 'basis.rb'
  puts '<div class="menu">'
  "#{path}/menu.txt".blues
  puts '</div>'

  puts '<div class="content">'
  "#{path}/char.txt".blues
  puts '</div>'
%>

</body>
</html>
