function ayso64page() {
}
ayso64page.prototype= {
   displayDate: function() {
      var this_month = new Array(12);
      this_month[0]  = "January";
      this_month[1]  = "February";
      this_month[2]  = "March";
      this_month[3]  = "April";
      this_month[4]  = "May";
      this_month[5]  = "June";
      this_month[6]  = "July";
      this_month[7]  = "August";
      this_month[8]  = "September";
      this_month[9]  = "October";
      this_month[10] = "November";
      this_month[11] = "December";

      var today = new Date();
      var day   = today.getDate();
      var dow   = today.getDay();
      var month = today.getMonth();
      var year  = today.getYear();

      if (year < 1000) {
         year += 1900;
      }
      return(this_month[month]+"&nbsp;"+day+",&nbsp;"+year);
   },
   baseUrl: "http://www.ayso64.org/",
   relativeUrl: function(leaf) {
       return '"' + this.baseUrl + leaf + '"';
   },
   writeHeader: function() {
      document.write('<table width="800" border="1"  cellpadding="0" cellspacing="0" bordercolor="#0066CC" bgcolor="#FFFFFF">\n');
      document.write('    <tr>\n');
      document.write('        <td width="1" rowspan="6" valign="top" bgcolor="#0066CC">&nbsp;</td>\n');
      document.write('        <td height="20" colspan="2" align="left" valign="top" bordercolor="#0066CC" bgcolor="#0066CC" border=0>\n');
      document.write('            <img src=' + this.relativeUrl("images/line.jpg") + ' width="637" height="20">\n');
      document.write('        </td>\n');
      document.write('        <td width="2" rowspan="6" valign="top" bgcolor="#0066CC">&nbsp;</td>\n');
      document.write('    </tr>\n');
      document.write('    <tr>\n');
      document.write('        <td width="178" height="40">\n');
      document.write('             <a href=' + this.relativeUrl("") + '>\n');
      document.write('                 <img width="200" height="92" border="0" src=' + this.relativeUrl("images/New-Logo-2s.jpg") + '/>\n');
      document.write('             </a>\n');
      document.write('        </td>\n');  
      document.write('        <td valign="top" bgcolor="#FFFFFF">\n');
      document.write('            <table width="500" height="92" border="1" cellpadding="5" cellspacing="5" bordercolor="#0066CC">\n');
      document.write('                <tr align="center">\n');
      document.write('                    <td><strong>\n');
      document.write('                        <script language="JavaScript">\n');
      document.write('                            <!--\n');
      document.write('                                document.write(window.page.displayDate());\n');
      document.write('                            //-->\n');
      document.write('                        </script>\n');
      document.write('                    </strong>\n');
      document.write('                    </td>\n');
      document.write('                    <td colspan="9">\n');
      document.write('                        <div align="right">\n');
      document.write('                            <font size="2" face="Arial, Helvetica, sans-serif"><strong>\n');
      document.write('                                <img src=' + this.relativeUrl("images/top-pic.jpg") + ' width="510" height="59">\n');
      document.write('                            </strong></font>\n');
      document.write('                        </div>\n');
      document.write('                    </td>\n');
      document.write('                </tr>\n');
      document.write('                <tr align="center">\n');
      document.write('                    <td><strong><font size="2" face="Arial, Helvetica, sans-serif"><a href=' + this.relativeUrl("registration.htm") + '>Registration</a></font></strong></td>\n');
      document.write('                    <td><strong><font size="2" face="Arial, Helvetica, sans-serif"><a href=' + this.relativeUrl("calendar.htm") + '>Calendar</a></font></strong></td>\n');
      document.write('                    <td><strong><font size="2" face="Arial, Helvetica, sans-serif"><a href=' + this.relativeUrl("news.htm") + '>News</a></font></strong></td>\n');
      document.write('                    <td><strong><font size="2" face="Arial, Helvetica, sans-serif"><a href=' + this.relativeUrl("fields.htm") + '>Fields</a></font></strong></td>\n');
      document.write('                    <td><strong><font size="2" face="Arial, Helvetica, sans-serif"><a href=' + this.relativeUrl("forms.htm") + '>Forms</a></font></strong></td>\n');
      document.write('                    <td><strong><font size="2" face="Arial, Helvetica, sans-serif"><a href=' + this.relativeUrl("coaches.htm") + '>Coaches</a></font></strong></td>\n');
      document.write('                    <td><strong><font size="2" face="Arial, Helvetica, sans-serif"><a href=' + this.relativeUrl("referees.htm") + '>Referees</a></font></strong></td>\n');
      document.write('                    <td><font size="2" face="Arial, Helvetica, sans-serif"><strong><a href=' + this.relativeUrl("contact.htm") + '>Contact</a></strong></font></td>\n');
      document.write('                    <td><font size="2" face="Arial, Helvetica, sans-serif"><strong><a href=' + this.relativeUrl("faq.htm") + '>FAQs</a></strong></font></td>\n');
      document.write('                    <td><font size="2" face="Arial, Helvetica, sans-serif"><strong><a href=' + this.relativeUrl("otherlinks.htm") + '>Links</a></strong></font></td>\n');
      document.write('                </tr>\n');
      document.write('            </table></td>\n');
      document.write('    </tr>\n');
      document.write('    <tr>\n');
      document.write('        <td colspan="2" align="center" valign="top" bgcolor="#0066CC">&nbsp;</td>\n');
      document.write('    </tr>\n');
      document.write('</table>\n');
   },
   addr: 'equipment',
   domain: 'ayso64.org',
   scheme: 'mailto',
   setEmail: function(id) {
      document.getElementById(id).href = this.scheme + ':' + this.addr + '@' + this.domain;
   },
   end: null
};
