// ========
// Define Organization Variables
// ========
var gEntity = "Rubicon"
// ========
// Date for site last updated
// ========
var siteLastUpdated = '2008-01-23'
// ========
// Define the first and last year for the calendar
// ========
var firstYear = 2007;	// Do NOT produce aRefs prior to this year
var lastYear = 2009;	// Do NOT produce aRefs after this year
// ========
// Global declarations For Animation Routines
// ========
var vCurArea = 1;		// Current area to display
var vMaxAreas = 2;		// Maximum display areas

var dspLinks = "Yes";	// Should the links at the top and bottom of page be displayed
//			   SET BY fDspPageHeader

// ========
// Test Site Status
//   If 'off' - then selection of test237.rubicon237.com
//              will issue an error message and go away.
//   If 'on'  - then selection of test237.rubicon237.com
//              will work.
// ========
var TestSiteStatus = 'on'
var WhereAreWe = location.href;	// Determines where we are
var WeAreInTest = WhereAreWe.match("test")

// ========
// Page Heading Information
// ========
var orgHL1='Rubicon Lodge #237'
var orgHL2='<br><font size="+0">Free and Accepted Masons of Ohio</font>'
var orgHL3='<br><font size="-1">Mark E. Bowlick - Worshipful Master</font>'
var orgHL4='<br><font size="-2">8883 Browning Dr. Waterville, OH 43566</font>'
var orgHL5='<br><font size="-3">Stated Meetings 2nd & 4th Mondays @ 7:30p</font>'

// ========
// Global variable declarations Header/Footer Graphics
// ========
var dsp2008Logos = "yes"	// If year is 2008 change the bottom graphics
var doRedSkelton = "yes"	// botRightGraphic1 clickable to Red Skelton Pledge of Allegiance
var topLeftImage='"graphics/sym-bluelodge.gif" width="100" height="100" border="0"'
var botLeftGraphic = '"graphics/sym-bluelodge.gif"  width="100" height="100" border="0"'
var botCenterGraphic = '<img src="graphics/banner-makinggoodmenbetter.gif" width="250" height="71">'
var botRightGraphic1 = '"graphics/flag-usa.gif"  width="100" height="100" border="0"'
var botRightGraphic2 = '<img src="graphics/flag-oh.gif" width="54" height="40"'
var hBar = '"graphics/bar-001.gif" width="640" height="4"'
var disclaimerPage = '237_disclaimer.htm'
var updatesPage = '237_updates.htm'
var topLeftPage = 'index.htm'
var botLeftPage = 'index.htm'


var dspHolidayGreeting = "yes"	// display Happy Holiday Greeting in Header
var txtHolidayGreeting = '<b>Have a Safe and Happy Holiday Season</b>'
txtHolidayGreeting    += '<br>From the Worshipful Master, Officers and Brethern of Rubicon Lodge'

// ========
// iPMs will hold the total number of Past Masters loaded
// aPMs will hold the actual Past Master data
//  **  CAUTION **
//  The fPastMastersTbl() function MUST be the ONLY place where this is updated
//   All other functions MUST ONLY read this value
// ========
var iPMs = -1       // MUST BE -1 for everything to work correctly
var PMArrayLoaded = "n";		// Are the Past Master Arrays loaded??
var aPMs = new Array;





// ========
// The following function builds the Menu text String
// ========

function fBldMenu()
{

var t = ''
var tmp1 = '<INPUT TYPE="button" VALUE="'
var tmp2 = '" onClick="fLoadPage(' + "'"
var tmp3 = "');" + '">'

//t+='<br>'

t += tmp1 + 'Home' + tmp2 + 'index.htm' + tmp3
t += tmp1 + 'Guest Book' + tmp2 + '237_gbook.htm' + tmp3
t += tmp1 + 'Calendar' + tmp2 + '237_calendar.htm' + tmp3
t += tmp1 + 'About:MASONRY' + tmp2 + '237_aboutmasonry.htm' + tmp3
t += tmp1 + 'About:Rubicon' + tmp2 + '237_about237.htm' + tmp3
t += tmp1 + 'Links' + tmp2 + '237_links.htm' + tmp3


// This must be the last entry
//t+='<br>'

return t

}
