/* Declare global variables */

/**** SYSTEM-WIDE DATE *********************************************************************/
/*    Used to establish the current-active year and month *********************************/
/*    Currently only the year and month are used in the Presidents Msg *******************/
/*    as YYYY, MM, DD where MM is zero relative (0 = January) ***************************/
var glblSiteDate = new Date(2010, 8, 1); 

/**** FISCAL YEAR ********************************************************************/
/*    as String YYYY-YYYY+1   *******************************************************/
var glblFiscalYear = "2010-2011";

/**** CALENDAR VARIABLES *********************************************************/
var wordMonth = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
var dayofWeek = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday");
var calendarString = new String();
var cookies = new Object();

/***************************************************************************/
/* When running system locally run as test = true, otherwise set to false */
var test = false; /********************************************************/
/************************************************************************/

/**** PRESET DIRECTORIES - DO NOT CHANGE ******************************/
var glblWebSiteURLPrefix = "http://" + document.domain + "/";
// 2/15/10 - changed to document.domain to also support URLs where domain = ccpas.org ( no "www." )
// var glblWebSiteURLPrefix = "http://www.ccpas.org/";		//Bypass this when test=true - for Final Production

//var glblWebSiteURLPrefix = "http://newrelease.ccpas.org/";	//Bypass this when test=true - for server test
