               var d=new Date();
               var mnames=new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
               document.write("      <hr />\r\n");
               document.write("      <p style=\"text-align:center;font-size:x-small;color:#000099;\">\r\n");
               document.write("         The content of this web site is the work of a student at the State University of New York\r\n");
               document.write("         Onondaga Community College (SUNY OCC), Patrick J. Gleason, who is solely responsible for its\r\n");
               document.write("         content.  This content does not necessarily represent the views of the College faculty,\r\n");
               document.write("         administration, nor of the State University of New York.<br /><br />\r\n");
               document.write("         Page last updated ");
               document.write(d.getDate()+"-"+mnames[d.getMonth()]+"-"+d.getFullYear()+"<br />\r\n");
               document.write("Copyright &copy;"+d.getFullYear()+" Patrick J. Gleason"+"\r\n");
               document.write("      </p>\r\n");
