RetiredGeek
08-18-2004, 06:41 PM
:confused: This script works fine fine in IE but in FireFox 0.92 it keeps telling me that monName & frmCalendar are undeclared. Any enlightment would be appreciated.
File Edited: Highlighted problems in Red, Fixed comment to indicate correct data file name, Appended missing data file.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<!-- Modified 01 Apr 2004 by: BEK -->
<!--
Rolling Calendar: This calendar will initialize with the current month shown
if the user then selects a month prior to the current month it will display
that month for the next calendar year. Thus you must clear out the previous
months events at the start of each month. You don't have to put in the events
for the following year's month until you know them.
Required files: multiYrCalData.js
This file contains the fillmonth() function which contains
the listing of months where you insert your events.
-->
<META http-equiv="pragma" content="no-cache">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<TITLE>Clarendon County Sesquicentennial Form Calendar</TITLE>
<LINK REL=stylesheet Type="text/css" HREF="clarendonhistory.css">
<STYLE type="text/css">
<!--
TABLE {width: 100%; border-style: none;}
TD {width: 14%; text-align: center; vertical-align: top;
border-width: 1px; border-style: solid; border-color: black;}
.DayHdr {vertical-align: Middle; Font-weight: bold; background: #0044FF;
color: white;}
.Month {Font-Size: 36; text-align: center; border-style: none;}
-->
</STYLE>
<Script type="text/javascript" src="multiYrCalData.js"></Script>
<Script type="text/javascript">
<!-- Hide from old browsers
// Declaration of Variables -------------------------------------------------------------
myMon = new Array
events = new Array
/**** Note the monNames & maxdays arrays are 0 based
due to the values used by getMonth & setMonth */
monNames = new Array ("January","February","March","April","May","June","July","August","September","October","November","December")
maxdays = new Array (31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31)
var cntmyMonth = 42 //Max array positions
var ofsFD //Offset to first day of month
var maxDay = 30 //Last day of the month
var curDay //Current date
var curMonth //Current Month zero based adjust by 1
var curYear //Current 4 digit year
var firstMonday //Date of the 1st Monday of the Month
var secondMonday
var thirdMonday
var fourthMonday
var ofsFirstThurs // Where does the 1st thursday fall will be -1 to 5
var fourthThursday //For Thanksgiving
var leapYear
// End of Variable Declarations ***
function clrArray() {
for(var n=0; n < 32; n++) {
events[n] = "" ;
}
} // End of function clrArray ***
function setmonth(iMonth, iYear) {
now = new Date;
curMonth = now.getMonth();
curYear = now.getFullYear();
if(arguments.length == 1) iYear = "2003";
if(iMonth >= 0) {
curMonth = iMonth;
}
if(iYear >= 0) {
curYear = iYear;
}
now.setYear(curYear);
now.setMonth(curMonth);
maxdays[1] = 28 ; <!-- Default days for Feb - reset below for leap years -->
if((curYear % 4 == 0) && (curYear % 100 != 0 || curYear % 400 == 0)){
maxdays[1] = 29 ;
}
now.setDate(1); //Set date to 1st of the month
ofsFD = now.getDay(); //Find the day of the week the month starts on
firstMonday = 7 - ofsFD + 2; //Compute the 1st, 2nd, & 3rd Monday of the month
if(firstMonday == 9) {
firstMonday = 2;
}
if(firstMonday == 8) {
firstMonday = 1;
}
secondMonday = firstMonday + 7 ;
thirdMonday = firstMonday + 14 ;
fourthMonday = firstMonday + 21;
ofsFirstThurs = 5-ofsFD; // > 0 if 1st day of month is before Thurs.
if (ofsFirstThurs > 0)
fourthThursday = 21 + ofsFirstThurs;
else
fourthThursday = 28 + ofsFirstThurs;
if(firstMonday<4) { // Compute last friday of Month
MemorialDay=fourthMonday + 7;
}
else {
MemorialDay = fourthMonday;
}
} // End of function SetMonth ***
function fDrawCal(){
document.write('<TABLE style="border-collapse: collapse;"><TR>');
document.write('<TD colspan="7" class="Month" id=monName>');
document.write(monNames[curMonth]+" "+curYear);
document.write('</TD>');
document.write('</TR>');
document.write('<TR>');
document.write('<TD class="DayHdr">SUN</TD>');
document.write('<TD class="DayHdr">MON</TD>');
document.write('<TD class="DayHdr">TUE</TD>');
document.write('<TD class="DayHdr">WED</TD>');
document.write('<TD class="DayHdr">THU</TD>');
document.write('<TD class="DayHdr">FRI</TD>');
document.write('<TD class="DayHdr">SAT</TD>');
document.write('</TR>');
for(i=0; i<6; i++) {
document.write('<TR>');
for(j=0; j<7; j++) {
document.write('<TD id=calDateText>');
document.write(myMon[i*7+j]);
document.write('</TD>');
}
document.write('</TR>');
}
document.write('</TABLE>');
} //End fDrawCal ***
function fUpdateCal(iMonth,iYear){
clrArray();
setmonth(iMonth,iYear);
fillmonth();
monName.innerHTML = monNames[curMonth]+" "+curYear ;
for(i=0; i<6; i++) {
for(j=0; j<7; j++) {
calDateText[i*7+j].innerHTML = myMon[i*7+j];
}
}
} //End fUpdateCal ***
function fInit(){
frmCalendar.tbSelMonth.options[curMonth].selected=true;
frmCalendar.tbSelYear.options[curYear-2003].selected=true;
}
clrArray();
setmonth(-1,-1);
fillmonth();
// End of JavaScript and HTML comment hiding it from browser -->
</Script>
</head>
<body onload="fInit()">
<FORM name="frmCalendar" id="frmCalendar" method="post" action="">
<INPUT type="hidden" name="calSelectDate" value="">
<TABLE>
<TR>
<TD style="border-style: none;">
<SPAN Class="wrapright">
<SELECT name="tbSelMonth" style="font-size: 12pt;"
onchange="fUpdateCal(frmCalendar.tbSelMonth.value,frmCalendar.tbSelYear.value)"
>
<OPTION VALUE="0">January</OPTION>
<OPTION VALUE="1">Feburary</OPTION>
<OPTION VALUE="2">March</OPTION>
<OPTION VALUE="3">April</OPTION>
<OPTION VALUE="4">May</OPTION>
<OPTION VALUE="5">June</OPTION>
<OPTION VALUE="6">July</OPTION>
<OPTION VALUE="7">August</OPTION>
<OPTION VALUE="8">September</OPTION>
<OPTION VALUE="9">October</OPTION>
<OPTION VALUE="10">November</OPTION>
<OPTION VALUE="11">December</OPTION>
</SELECT>
<SELECT name="tbSelYear" style="font-size: 12pt;"
onchange="fUpdateCal(frmCalendar.tbSelMonth.value,frmCalendar.tbSelYear.value)"
>
<OPTION VALUE="2003">2003</OPTION>
<OPTION VALUE="2004">2004</OPTION>
<OPTION VALUE="2005">2005</OPTION>
<OPTION VALUE="2006">2006</OPTION>
</SELECT>
</SPAN>
<SPAN Class="wrapleft">
<a href="index.html"><img border=0 width=128 height=25
src="images/homebtn.gif" alt=Home></a>
</SPAN>
</TD>
</TR>
<TR>
<TD style="border-style: none;">
<Script type="text/javascript">fDrawCal();</Script>
</TD>
</TR>
</Table>
</FORM>
</body>
</html>
---------------------- multiYrCalData.js ---------------------------
// Edit this file to add events to a given month.
// The subscript in the events array = the day of the month, i.e. events[15]
// is the 15th of the month. You can also use special items like firstMonday,
// secondMonday, thirdMonday, and fourthMonday, and thirdThursday [Thanksgiving]
// NOTE: the Month numbers are one less and are commented for clarity!
/******************************************************************************
***** MAKE SURE YOU PUT THE EVENT IN THE PROPER YEAR!!!!! *****
******************************************************************************/
// Editing Notes:
// Use <BR> to start the following text on a new line.
// <HR> to draw a line under the preceding text and start the following
// under the line.
<!--
function fillmonth() {
if(curYear == 2003) { //********* 2003 ***************************
if(curMonth == 0){ //January
events[1] = "New Year's<HR>" ;
}
if(curMonth == 1){ //Febuary
events[14] = "Valentine's Day<HR>";
events[thirdMonday] = "Washington's BDay<HR>" + events[thirdMonday]
}
if(curMonth == 2){ //March
events[1] = "";
}
if(curMonth == 3){ //April
events[1] = "";
}
if(curMonth == 4){ //May
events[1] = "";
events[MemorialDay] = "Memorial Day<HR>";
}
if(curMonth == 5){ //June
events[1] = "";
}
if(curMonth == 6){ //July
events[4] = "Independence Day<HR>" + events[4];
}
if(curMonth == 7){ //August
events[1] = "CLOSED";
}
if(curMonth == 8){ //September
events[1] = "";
events[firstMonday] = "Labor Day<HR>" + events[firstMonday];
}
if(curMonth == 9){ //October
events[1] = "";
events[secondMonday] = "Columbus Day<HR>" + events[secondMonday];
}
if(curMonth == 10){ //November
events[1] = "";
events[11] = "Veteran's Day<BR><img src='images/veteransdaysm.gif' height='72' width='103' alt='V-Day'>"
events[13] = "Planning Mtg. F.E. DuBose Center 5pm"
events[fourthThursday] = "Thanksgiving<HR>";
}
if(curMonth == 11){ //December
events[1] = "";
events[25] = "Christmas<HR>";
}
} // End 2003 Data ***
if(curYear == 2004) { // ************* 2004 *************************
if(curMonth == 0){ //January
events[1] = "New Year's<HR>" ;
events[21]="5:30pm Planning Mtg.<BR>F.E.DuBose Cntr.<BR>Rm 197";
}
if(curMonth == 1){ //Febuary
events[14] = "Valentine's Day<HR>";
events[thirdMonday] = "Washington's BDay<HR>" + events[thirdMonday]
}
if(curMonth == 2){ //March
events[1] = "";
}
if(curMonth == 3){ //April
events[1] = "";
}
if(curMonth == 4){ //May
events[1] = "";
events[MemorialDay] = "Memorial Day<HR>";
}
if(curMonth == 5){ //June
events[1] = "";
}
if(curMonth == 6){ //July
events[4] = "Independence Day<HR>" + events[4];
}
if(curMonth == 7){ //August
events[1] = "";
}
if(curMonth == 8){ //September
events[1] = "";
events[firstMonday] = "Labor Day<HR>" + events[firstMonday];
}
if(curMonth == 9){ //October
events[1] = "";
events[16] = "<A href='http://web.ftc-i.net/~gcsummers/victoryfortwatson.html' " +
"target='_blank'>3<sup>rd</sup> Victory at Fort Watson</A>";
events[secondMonday] = "Columbus Day<HR>" + events[secondMonday];
}
if(curMonth == 10){ //November
events[1] = "";
events[11] = "Veteran's Day<BR><img src='images/veteransdaysm.gif' height='72' width='103' alt='V-Day'>"
events[fourthThursday] = "Thanksgiving<HR>";
}
if(curMonth == 11){ //December
events[1] = "";
events[25] = "Christmas<HR>";
}
} // End 2004 Data ***
if(curYear == 2005) { // ************* 2005 *************************
if(curMonth == 0){ //January
events[1] = "New Year's<HR>" ;
events[23] = "3:00PM Opening celebration in Paxville"
}
if(curMonth == 1){ //Febuary
events[14] = "Valentine's Day<HR>";
events[thirdMonday] = "Washington's BDay<HR>" + events[thirdMonday]
}
if(curMonth == 2){ //March
events[1] = "";
events[11] = "<A href='http://www.francismarionsymposium.com'>Francis Marion/Swamp<BR>Fox Symposium III</A>";
events[12] = "<A href='http://www.francismarionsymposium.com'>Francis Marion/Swamp<BR>Fox Symposium III</A>";
}
if(curMonth == 3){ //April
events[1] = "";
}
if(curMonth == 4){ //May
events[1] = "";
events[MemorialDay] = "Memorial Day<HR>";
}
if(curMonth == 5){ //June
events[1] = "";
}
if(curMonth == 6){ //July
events[4] = "Independence Day<HR>" + events[4];
}
if(curMonth == 7){ //August
events[1] = "";
}
if(curMonth == 8){ //September
events[1] = "";
events[firstMonday] = "Labor Day<HR>" + events[firstMonday];
}
if(curMonth == 9){ //October
events[1] = "";
events[15] = "<A href='http://web.ftc-i.net/~gcsummers/victoryfortwatson.html' " +
"target='_blank'>4<sup>th</sup> Victory at Fort Watson</A>";
events[16] = "<A href='http://web.ftc-i.net/~gcsummers/victoryfortwatson.html' " +
"target='_blank'>4<sup>th</sup> Victory at Fort Watson</A>";
events[secondMonday] = "Columbus Day<HR>" + events[secondMonday];
}
if(curMonth == 10){ //November
events[1] = "";
events[11] = "Veteran's Day<BR><img src='images/veteransdaysm.gif' height='72' width='103' alt='V-Day'>"
events[12] = "10:00am Paxville Parade"
events[fourthThursday] = "Thanksgiving<HR>";
}
if(curMonth == 11){ //December
events[1] = "";
events[25] = "Christmas<HR>";
}
} // End 2005 Data ***
if(curYear == 2006) { // ************* 2006 *************************
if(curMonth == 0){ //January
events[1] = "New Year's<HR>" ;
}
if(curMonth == 1){ //Febuary
events[14] = "Valentine's Day<HR>";
events[thirdMonday] = "Washington's BDay<HR>" + events[thirdMonday]
}
if(curMonth == 2){ //March
events[1] = "";
}
if(curMonth == 3){ //April
events[1] = "";
}
if(curMonth == 4){ //May
events[1] = "";
events[MemorialDay] = "Memorial Day<HR>";
}
if(curMonth == 5){ //June
events[1] = "";
}
if(curMonth == 6){ //July
events[4] = "Independence Day<HR>" + events[4];
}
if(curMonth == 7){ //August
events[1] = "";
}
if(curMonth == 8){ //September
events[1] = "";
events[firstMonday] = "Labor Day<HR>" + events[firstMonday];
}
if(curMonth == 9){ //October
events[1] = "";
events[secondMonday] = "Columbus Day<HR>" + events[secondMonday];
}
if(curMonth == 10){ //November
events[1] = "";
events[11] = "Veteran's Day<BR><img src='images/veteransdaysm.gif' height='72' width='103' alt='V-Day'>"
events[fourthThursday] = "Thanksgiving<HR>";
}
if(curMonth == 11){ //December
events[1] = "";
events[25] = "Christmas<HR>";
}
} // End 2006 Data ***
/*
Load the myMon array with items from the current months events array
indexing them by adding the ofsFD value to place them in the proper
place in the 42 position calendar array myMon
*/
for(var i=0; i < cntmyMonth; i++)
{
if(i < ofsFD || i > (maxdays[curMonth] + ofsFD -1)) {
myMon[i] = " "
}
else {
if( events[i-ofsFD+1] != "") {
myMon[i] = "<B>"+ (i - ofsFD + 1) + "</B><BR>" + events[i-ofsFD+1]
}
else{
myMon[i] = (i - ofsFD + 1) + "<BR><BR><BR><BR>"
} // End of if( events[i-ofsFD+1] != "")
} // End of if(i < ofsFD || i > (maxdays[curMonth] + ofsFD -1))
} // End of for(var i = 0; i < cntmyMonth; i++)
} // End of function FillMonth -------------------------------------------------------------
-->
File Edited: Highlighted problems in Red, Fixed comment to indicate correct data file name, Appended missing data file.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<!-- Modified 01 Apr 2004 by: BEK -->
<!--
Rolling Calendar: This calendar will initialize with the current month shown
if the user then selects a month prior to the current month it will display
that month for the next calendar year. Thus you must clear out the previous
months events at the start of each month. You don't have to put in the events
for the following year's month until you know them.
Required files: multiYrCalData.js
This file contains the fillmonth() function which contains
the listing of months where you insert your events.
-->
<META http-equiv="pragma" content="no-cache">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<TITLE>Clarendon County Sesquicentennial Form Calendar</TITLE>
<LINK REL=stylesheet Type="text/css" HREF="clarendonhistory.css">
<STYLE type="text/css">
<!--
TABLE {width: 100%; border-style: none;}
TD {width: 14%; text-align: center; vertical-align: top;
border-width: 1px; border-style: solid; border-color: black;}
.DayHdr {vertical-align: Middle; Font-weight: bold; background: #0044FF;
color: white;}
.Month {Font-Size: 36; text-align: center; border-style: none;}
-->
</STYLE>
<Script type="text/javascript" src="multiYrCalData.js"></Script>
<Script type="text/javascript">
<!-- Hide from old browsers
// Declaration of Variables -------------------------------------------------------------
myMon = new Array
events = new Array
/**** Note the monNames & maxdays arrays are 0 based
due to the values used by getMonth & setMonth */
monNames = new Array ("January","February","March","April","May","June","July","August","September","October","November","December")
maxdays = new Array (31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31)
var cntmyMonth = 42 //Max array positions
var ofsFD //Offset to first day of month
var maxDay = 30 //Last day of the month
var curDay //Current date
var curMonth //Current Month zero based adjust by 1
var curYear //Current 4 digit year
var firstMonday //Date of the 1st Monday of the Month
var secondMonday
var thirdMonday
var fourthMonday
var ofsFirstThurs // Where does the 1st thursday fall will be -1 to 5
var fourthThursday //For Thanksgiving
var leapYear
// End of Variable Declarations ***
function clrArray() {
for(var n=0; n < 32; n++) {
events[n] = "" ;
}
} // End of function clrArray ***
function setmonth(iMonth, iYear) {
now = new Date;
curMonth = now.getMonth();
curYear = now.getFullYear();
if(arguments.length == 1) iYear = "2003";
if(iMonth >= 0) {
curMonth = iMonth;
}
if(iYear >= 0) {
curYear = iYear;
}
now.setYear(curYear);
now.setMonth(curMonth);
maxdays[1] = 28 ; <!-- Default days for Feb - reset below for leap years -->
if((curYear % 4 == 0) && (curYear % 100 != 0 || curYear % 400 == 0)){
maxdays[1] = 29 ;
}
now.setDate(1); //Set date to 1st of the month
ofsFD = now.getDay(); //Find the day of the week the month starts on
firstMonday = 7 - ofsFD + 2; //Compute the 1st, 2nd, & 3rd Monday of the month
if(firstMonday == 9) {
firstMonday = 2;
}
if(firstMonday == 8) {
firstMonday = 1;
}
secondMonday = firstMonday + 7 ;
thirdMonday = firstMonday + 14 ;
fourthMonday = firstMonday + 21;
ofsFirstThurs = 5-ofsFD; // > 0 if 1st day of month is before Thurs.
if (ofsFirstThurs > 0)
fourthThursday = 21 + ofsFirstThurs;
else
fourthThursday = 28 + ofsFirstThurs;
if(firstMonday<4) { // Compute last friday of Month
MemorialDay=fourthMonday + 7;
}
else {
MemorialDay = fourthMonday;
}
} // End of function SetMonth ***
function fDrawCal(){
document.write('<TABLE style="border-collapse: collapse;"><TR>');
document.write('<TD colspan="7" class="Month" id=monName>');
document.write(monNames[curMonth]+" "+curYear);
document.write('</TD>');
document.write('</TR>');
document.write('<TR>');
document.write('<TD class="DayHdr">SUN</TD>');
document.write('<TD class="DayHdr">MON</TD>');
document.write('<TD class="DayHdr">TUE</TD>');
document.write('<TD class="DayHdr">WED</TD>');
document.write('<TD class="DayHdr">THU</TD>');
document.write('<TD class="DayHdr">FRI</TD>');
document.write('<TD class="DayHdr">SAT</TD>');
document.write('</TR>');
for(i=0; i<6; i++) {
document.write('<TR>');
for(j=0; j<7; j++) {
document.write('<TD id=calDateText>');
document.write(myMon[i*7+j]);
document.write('</TD>');
}
document.write('</TR>');
}
document.write('</TABLE>');
} //End fDrawCal ***
function fUpdateCal(iMonth,iYear){
clrArray();
setmonth(iMonth,iYear);
fillmonth();
monName.innerHTML = monNames[curMonth]+" "+curYear ;
for(i=0; i<6; i++) {
for(j=0; j<7; j++) {
calDateText[i*7+j].innerHTML = myMon[i*7+j];
}
}
} //End fUpdateCal ***
function fInit(){
frmCalendar.tbSelMonth.options[curMonth].selected=true;
frmCalendar.tbSelYear.options[curYear-2003].selected=true;
}
clrArray();
setmonth(-1,-1);
fillmonth();
// End of JavaScript and HTML comment hiding it from browser -->
</Script>
</head>
<body onload="fInit()">
<FORM name="frmCalendar" id="frmCalendar" method="post" action="">
<INPUT type="hidden" name="calSelectDate" value="">
<TABLE>
<TR>
<TD style="border-style: none;">
<SPAN Class="wrapright">
<SELECT name="tbSelMonth" style="font-size: 12pt;"
onchange="fUpdateCal(frmCalendar.tbSelMonth.value,frmCalendar.tbSelYear.value)"
>
<OPTION VALUE="0">January</OPTION>
<OPTION VALUE="1">Feburary</OPTION>
<OPTION VALUE="2">March</OPTION>
<OPTION VALUE="3">April</OPTION>
<OPTION VALUE="4">May</OPTION>
<OPTION VALUE="5">June</OPTION>
<OPTION VALUE="6">July</OPTION>
<OPTION VALUE="7">August</OPTION>
<OPTION VALUE="8">September</OPTION>
<OPTION VALUE="9">October</OPTION>
<OPTION VALUE="10">November</OPTION>
<OPTION VALUE="11">December</OPTION>
</SELECT>
<SELECT name="tbSelYear" style="font-size: 12pt;"
onchange="fUpdateCal(frmCalendar.tbSelMonth.value,frmCalendar.tbSelYear.value)"
>
<OPTION VALUE="2003">2003</OPTION>
<OPTION VALUE="2004">2004</OPTION>
<OPTION VALUE="2005">2005</OPTION>
<OPTION VALUE="2006">2006</OPTION>
</SELECT>
</SPAN>
<SPAN Class="wrapleft">
<a href="index.html"><img border=0 width=128 height=25
src="images/homebtn.gif" alt=Home></a>
</SPAN>
</TD>
</TR>
<TR>
<TD style="border-style: none;">
<Script type="text/javascript">fDrawCal();</Script>
</TD>
</TR>
</Table>
</FORM>
</body>
</html>
---------------------- multiYrCalData.js ---------------------------
// Edit this file to add events to a given month.
// The subscript in the events array = the day of the month, i.e. events[15]
// is the 15th of the month. You can also use special items like firstMonday,
// secondMonday, thirdMonday, and fourthMonday, and thirdThursday [Thanksgiving]
// NOTE: the Month numbers are one less and are commented for clarity!
/******************************************************************************
***** MAKE SURE YOU PUT THE EVENT IN THE PROPER YEAR!!!!! *****
******************************************************************************/
// Editing Notes:
// Use <BR> to start the following text on a new line.
// <HR> to draw a line under the preceding text and start the following
// under the line.
<!--
function fillmonth() {
if(curYear == 2003) { //********* 2003 ***************************
if(curMonth == 0){ //January
events[1] = "New Year's<HR>" ;
}
if(curMonth == 1){ //Febuary
events[14] = "Valentine's Day<HR>";
events[thirdMonday] = "Washington's BDay<HR>" + events[thirdMonday]
}
if(curMonth == 2){ //March
events[1] = "";
}
if(curMonth == 3){ //April
events[1] = "";
}
if(curMonth == 4){ //May
events[1] = "";
events[MemorialDay] = "Memorial Day<HR>";
}
if(curMonth == 5){ //June
events[1] = "";
}
if(curMonth == 6){ //July
events[4] = "Independence Day<HR>" + events[4];
}
if(curMonth == 7){ //August
events[1] = "CLOSED";
}
if(curMonth == 8){ //September
events[1] = "";
events[firstMonday] = "Labor Day<HR>" + events[firstMonday];
}
if(curMonth == 9){ //October
events[1] = "";
events[secondMonday] = "Columbus Day<HR>" + events[secondMonday];
}
if(curMonth == 10){ //November
events[1] = "";
events[11] = "Veteran's Day<BR><img src='images/veteransdaysm.gif' height='72' width='103' alt='V-Day'>"
events[13] = "Planning Mtg. F.E. DuBose Center 5pm"
events[fourthThursday] = "Thanksgiving<HR>";
}
if(curMonth == 11){ //December
events[1] = "";
events[25] = "Christmas<HR>";
}
} // End 2003 Data ***
if(curYear == 2004) { // ************* 2004 *************************
if(curMonth == 0){ //January
events[1] = "New Year's<HR>" ;
events[21]="5:30pm Planning Mtg.<BR>F.E.DuBose Cntr.<BR>Rm 197";
}
if(curMonth == 1){ //Febuary
events[14] = "Valentine's Day<HR>";
events[thirdMonday] = "Washington's BDay<HR>" + events[thirdMonday]
}
if(curMonth == 2){ //March
events[1] = "";
}
if(curMonth == 3){ //April
events[1] = "";
}
if(curMonth == 4){ //May
events[1] = "";
events[MemorialDay] = "Memorial Day<HR>";
}
if(curMonth == 5){ //June
events[1] = "";
}
if(curMonth == 6){ //July
events[4] = "Independence Day<HR>" + events[4];
}
if(curMonth == 7){ //August
events[1] = "";
}
if(curMonth == 8){ //September
events[1] = "";
events[firstMonday] = "Labor Day<HR>" + events[firstMonday];
}
if(curMonth == 9){ //October
events[1] = "";
events[16] = "<A href='http://web.ftc-i.net/~gcsummers/victoryfortwatson.html' " +
"target='_blank'>3<sup>rd</sup> Victory at Fort Watson</A>";
events[secondMonday] = "Columbus Day<HR>" + events[secondMonday];
}
if(curMonth == 10){ //November
events[1] = "";
events[11] = "Veteran's Day<BR><img src='images/veteransdaysm.gif' height='72' width='103' alt='V-Day'>"
events[fourthThursday] = "Thanksgiving<HR>";
}
if(curMonth == 11){ //December
events[1] = "";
events[25] = "Christmas<HR>";
}
} // End 2004 Data ***
if(curYear == 2005) { // ************* 2005 *************************
if(curMonth == 0){ //January
events[1] = "New Year's<HR>" ;
events[23] = "3:00PM Opening celebration in Paxville"
}
if(curMonth == 1){ //Febuary
events[14] = "Valentine's Day<HR>";
events[thirdMonday] = "Washington's BDay<HR>" + events[thirdMonday]
}
if(curMonth == 2){ //March
events[1] = "";
events[11] = "<A href='http://www.francismarionsymposium.com'>Francis Marion/Swamp<BR>Fox Symposium III</A>";
events[12] = "<A href='http://www.francismarionsymposium.com'>Francis Marion/Swamp<BR>Fox Symposium III</A>";
}
if(curMonth == 3){ //April
events[1] = "";
}
if(curMonth == 4){ //May
events[1] = "";
events[MemorialDay] = "Memorial Day<HR>";
}
if(curMonth == 5){ //June
events[1] = "";
}
if(curMonth == 6){ //July
events[4] = "Independence Day<HR>" + events[4];
}
if(curMonth == 7){ //August
events[1] = "";
}
if(curMonth == 8){ //September
events[1] = "";
events[firstMonday] = "Labor Day<HR>" + events[firstMonday];
}
if(curMonth == 9){ //October
events[1] = "";
events[15] = "<A href='http://web.ftc-i.net/~gcsummers/victoryfortwatson.html' " +
"target='_blank'>4<sup>th</sup> Victory at Fort Watson</A>";
events[16] = "<A href='http://web.ftc-i.net/~gcsummers/victoryfortwatson.html' " +
"target='_blank'>4<sup>th</sup> Victory at Fort Watson</A>";
events[secondMonday] = "Columbus Day<HR>" + events[secondMonday];
}
if(curMonth == 10){ //November
events[1] = "";
events[11] = "Veteran's Day<BR><img src='images/veteransdaysm.gif' height='72' width='103' alt='V-Day'>"
events[12] = "10:00am Paxville Parade"
events[fourthThursday] = "Thanksgiving<HR>";
}
if(curMonth == 11){ //December
events[1] = "";
events[25] = "Christmas<HR>";
}
} // End 2005 Data ***
if(curYear == 2006) { // ************* 2006 *************************
if(curMonth == 0){ //January
events[1] = "New Year's<HR>" ;
}
if(curMonth == 1){ //Febuary
events[14] = "Valentine's Day<HR>";
events[thirdMonday] = "Washington's BDay<HR>" + events[thirdMonday]
}
if(curMonth == 2){ //March
events[1] = "";
}
if(curMonth == 3){ //April
events[1] = "";
}
if(curMonth == 4){ //May
events[1] = "";
events[MemorialDay] = "Memorial Day<HR>";
}
if(curMonth == 5){ //June
events[1] = "";
}
if(curMonth == 6){ //July
events[4] = "Independence Day<HR>" + events[4];
}
if(curMonth == 7){ //August
events[1] = "";
}
if(curMonth == 8){ //September
events[1] = "";
events[firstMonday] = "Labor Day<HR>" + events[firstMonday];
}
if(curMonth == 9){ //October
events[1] = "";
events[secondMonday] = "Columbus Day<HR>" + events[secondMonday];
}
if(curMonth == 10){ //November
events[1] = "";
events[11] = "Veteran's Day<BR><img src='images/veteransdaysm.gif' height='72' width='103' alt='V-Day'>"
events[fourthThursday] = "Thanksgiving<HR>";
}
if(curMonth == 11){ //December
events[1] = "";
events[25] = "Christmas<HR>";
}
} // End 2006 Data ***
/*
Load the myMon array with items from the current months events array
indexing them by adding the ofsFD value to place them in the proper
place in the 42 position calendar array myMon
*/
for(var i=0; i < cntmyMonth; i++)
{
if(i < ofsFD || i > (maxdays[curMonth] + ofsFD -1)) {
myMon[i] = " "
}
else {
if( events[i-ofsFD+1] != "") {
myMon[i] = "<B>"+ (i - ofsFD + 1) + "</B><BR>" + events[i-ofsFD+1]
}
else{
myMon[i] = (i - ofsFD + 1) + "<BR><BR><BR><BR>"
} // End of if( events[i-ofsFD+1] != "")
} // End of if(i < ofsFD || i > (maxdays[curMonth] + ofsFD -1))
} // End of for(var i = 0; i < cntmyMonth; i++)
} // End of function FillMonth -------------------------------------------------------------
-->