/*
 * hassler.js : functions supporting jonhasslertheater.org
*/

/* externally-set values for jhpageindx and jhrootlink are required */

/* arrays containing page names and corresponding file names for menu construction */ 
var jhpagelist = 9 ;
var jhpagename = [ "Home", "About JHT", "Past Seasons", "Box Office", "Bookstore", "Writers' Center", "Things&nbsp;To&nbsp;Do", "Dinner Theater", "Contact&nbsp;us"  ]
var jhpagelink = [ "index.html", "about.html", "season.html", "ticket.html", "books.html", "writers-center.html", "things-to-do.html", "Dining.html", "mailto:boxoffice@jonhasslertheater.org" ]

/* JH_menu generates a menu of base pages excluding the current page identified by jhpageindx */
function JH_menu() {
  var refull = /^\w+:/;
  document.write("<TABLE width='100%' border=1 bordercolor='white' cellspacing=1 cellpadding=0 bgcolor='#447FA6'>");
  document.write("<TR>");
  for ( var mm = 0 ; mm < jhpagelist ; mm++ ) {
    document.write("<TD><DIV align='center'>"); 
    if ( mm == jhpageindx ) {
      document.write("<FONT color='black' face='Verdana, Arial, Helvetica, sans-serif' size=2><B>");
      document.write(jhpagename[mm]);
      document.write("</B></FONT>");
    } else {
      document.write("<A href='");
      if ( jhpagelink[mm].match(refull) ) {
	    /* absolute url */
        var rehttp = /^http/;
        document.write(jhpagelink[mm]);
        if ( jhpagelink[mm].match(rehttp) ) {
          document.write("' target='_blank");
        };
      } else {
	    /* relative url */
        document.write(jhrootlink+jhpagelink[mm]);
      };
      document.write("'>");
      document.write("<FONT color='white' face='Verdana, Arial, Helvetica, sans-serif' size=2><B>");
      document.write(jhpagename[mm]);
      document.write("</B></FONT>");
      document.write("</A>");
	};
    document.write("</DIV></TD>"); 
  }; 
  document.write("</TR>");
  document.write("</TABLE>");
  document.write("<BR>");
 }

/* JH_foot generates the bottom-of-page items */
function JH_foot() {
  document.write("<DIV align='center'>");
  document.write("<TABLE width=100%>");
  document.write("<TR>");
  document.write("<TD width=40% align='left'><FONT size=1 face='Verdana, Arial, Helvetica, sans-serif' color='#339966'>Site&nbsp;by&nbsp;<A href='http://www.brushstrokes-design.com/'>Brushstrokes</A></FONT></TD>");
  document.write("<TD width=20% align='center'><FONT size=1 face='Verdana, Arial, Helvetica, sans-serif' color='#339966'><A href='mailto:ezaffarano@qwest.net?Subject=Hassler%20site'>Webmaster</A></FONT></TD>");
  document.write("<TD width=40% align='right'><FONT size=1 face='Verdana, Arial, Helvetica, sans-serif' color='#339966'>&copy;2003&nbsp;Jon&nbsp;Hassler&nbsp;Theater</FONT></TD>");
  document.write("</TR>");
  document.write("</TABLE>");
  document.write("</DIV>");
}
