//	display all future events on events page
function EventWrite()	{
	for (i=0; (Event[i]); i++) {
		if (Event[i].getYear() > now.getYear())	{
			flag = 1;
		}
		else if (Event[i].getMonth() > now.getMonth() && Event[i].getYear() == now.getYear()) {
			flag = 1;
		}
		else if (Event[i].getMonth() == now.getMonth() && Event[i].getYear() == now.getYear() && Event[i].getDate() >= now.getDate())	{
			flag = 1;
		}
		else
			flag = 0;
		if (flag == 1)	{
			document.write("<span class='EventTitleDark'>" + EventTitle[i]+ "</span><br><span class='TheDateDark'>" + theMonth[Event[i].getMonth()] + "&nbsp;" + Event[i].getDate() + ", " + Event[i].getFullYear() + "</span><br><span class='TheDateDark'>" + EventAct[i] + "</span><br><span class='EventDescriptionDark'>" + EventDetail[i]  + "</span><br><br>");
		flag = 0;
		}
	}
}


//	display all events within one month in banner on home page
function EventBanner()	{
var flag;
flag=0;
document.write("<table width='100%'><tr><td width='20%' align='center'><a href='index.htm'><img src='graphics/sudburyminutemen.gif' width='100' alt='Sudbury Companies of Militia & Minute' border='1' style='border-color:#000000' /></a></td><td width='80%' bgcolor='#FAC36E' style='padding-left:75px'><h1>Sudbury Companies of Militia and Minute - Upcoming Events</h1></td></tr></table>");
//document.write("<table width='100%'><tr><td><span class='EventTitleDark'><center>Colonial Faire and Muster at the Wayside Inn<br>September 26<br>10 am to 4 pm<br>Re-enactors, Fyfes and Drums, Food, Vendors, and Games.<br> Celebrate the Harvest Season in a Colonial Style.<br>More info at our <a href='faire.htm'>faire</a> page.");
//document.write("<br><br>You can help us out by volunteering at the faire.<br>Check our <a href='2008 SIGN UP SHEET-1.pdf' target='_new'>sign up sheet</a> and contact <a href='mailto:j_neuhauser1@yahoo.com'>John Neuhauser</a> and he can reserve your slots.");
//document.write("</center></span></td></tr></table><br>");
//document.write("<table width='100%'><tr><td><span class='EventTitleDark'><center>Battle of the Red Horse Tavern</center></span><span class='EventDescriptionDark'><center>November 7<br>10:30 am to 3:00 pm<br><a href='redhorse.htm'>More info</a></center></span>");
//document.write("<br><br>You can help us out by volunteering at the faire.<br>Check our <a href='2008 SIGN UP SHEET-1.pdf' target='_new'>sign up sheet</a> and contact <a href='mailto:j_neuhauser1@yahoo.com'>John Neuhauser</a> and he can reserve your slots.");
//document.write("</td></tr></table><br>");
document.write("<center><table width='100%' cellpadding='10'><tr>");
for (i=0; (Event[i]); i++)
if (i!=2){
{
//	current year, this month
	if (Event[i].getYear()==now.getYear() && Event[i].getMonth()==now.getMonth())
	{
		if (Event[i].getDate()>=now.getDate()) {
			cormonth=Event[i].getMonth() +1;
			document.write("<td><span class='TheDateDark'>" + theMonth[Event[i].getMonth()] + "&nbsp;" + Event[i].getDate() + ", " + Event[i].getFullYear() + "</span><br><span class='EventTitleDark'>" + EventTitle[i] + "</span><br><span class='EventDescriptionDark'>" + EventAct[i] + "</span><br><span class='TheDateDark'>" + EventDetail[i] + "</span>");
				document.write("</td>");
			flag++;
		}
	}		
//	current year, next month
	else if	(Event[i].getYear()==now.getYear() && Event[i].getMonth()-now.getMonth()==1)
	{
		if (Event[i].getDate()<=now.getDate())	{
			cormonth=Event[i].getMonth() +1;
			theYear = toString(Event[i].getFullYear());
			document.write("<td><span class='TheDateDark'>" + theMonth[Event[i].getMonth()] + "&nbsp;" + Event[i].getDate() + ", " + Event[i].getFullYear() + "</span><br><span class='EventTitleDark'>" + EventTitle[i] + "</span><br><span class='EventDescriptionDark'>" + EventAct[i] + "</span><br><span class='TheDateDark'>" + EventDetail[i] + "</span>");
				document.write("</td>");
			flag++;
		}
	}
//	next year, next month
	else if (Event[i].getYear()>now.getYear() && Event[i].getMonth()==0 && now.getMonth()==11)
	{
		if (Event[i].getDate()<=now.getDate())	{
			cormonth=Event[i].getMonth() +1;
			document.write("<td><span class='TheDateDark'>" + theMonth[Event[i].getMonth()] + "&nbsp;" + Event[i].getDate() + ", " + Event[i].getFullYear() + "</span><br><span class='EventTitleDark'>" + EventTitle[i] + "</span><br><span class='EventDescriptionDark'>" + EventAct[i] + "</span><br><span class='TheDateDark'>" + EventDetail[i] + "</span>");
				document.write("</td>");
			flag++;
		}
	}
	if ((flag!=0) && ((flag%3)==0))
	document.write("</tr><tr>");		
}
}
if (flag==0) document.write("<td><center><strong>No events scheduled in the next 30 days.<br>Check back soon.</strong></center></td>");
document.write("</tr></table>");
document.write("</center></td></tr></table>")
document.close();
}

// Pop up for upcoming events
//Events
theMonth = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
 
Event = new Array();
Event[0] = new Date(2009,8,14);//September Muster
Event[1] = new Date(2009,8,19);//Faire setup day
Event[2] = new Date(2009,8,26);//Colonial Faire
Event[3] = new Date(2009,9,5);//October Muster
Event[4] = new Date(2009,9,25);//Willard Clock event
Event[5] = new Date(2009,10,2);//November Muster
Event[6] = new Date(2009,10,7);//Battle of Red Horse Tavern
Event[7] = new Date(2009,10,21);//Grist Mill Birthday
Event[8] = new Date(2009,11,7);//December Muster
Event[9] = new Date(2009,11,17);//Route Committee Meeting
Event[10] = new Date(2010,0,4);//January Muster
Event[11] = new Date(2010,0,8);//12th Night Ball
Event[12] = new Date(2010,0,21); //Route committee
Event[13] = new Date(2010,0,24);//Drill
Event[14] = new Date(2010,1,1);//February Muster
//Event[12] = new Date(2019,1,7);//Drill
//Event[13] = new Date(2010,1,9);// Route Committee
Event[15] = new Date(2010,1,17);//Faire Committee
Event[16] = new Date(2010,1,20);//Drill
//Event[15] = new Date(2010,2,1);//Drill
Event[17] = new Date(2010,2,1);//March Muster
Event[18] = new Date(2010,2,6);//Drill
Event[19] = new Date(2010,2,12);//Ordinary
//Event[19] = new Date(2010,2,20);//Faire Committee meeting
Event[20] = new Date(2010,2,21);//Drill
Event[21] = new Date(2010,3,3);//Drill
//Event[22] = new Date(2010,3,4);//Sudbury Day Festival
Event[22] = new Date(2010,3,5);//April Muster
//Event[24] = new Date(2010,3,15);//Faire Committee meeting
Event[23] = new Date(2010,3,19);//April 19th March
Event[24] = new Date(2010,3,20);// Sudbury Historical Society Blood Drive
Event[25] = new Date(2010,3,23);//Grand Ball
Event[26] = new Date(2010,4,3);//May Muster
//Event[28] = new Date(2010,4,13);//Faire Committee meeting
//Event[29] = new Date(2010,4,16);//Stow Parade
//Event[26] = new Date(2010,4,21);//live shoot
Event[27] = new Date(2010,4,24);//Memorial Day Parade
//Event[24] = new Date(2010,5,1);//Willard Muster
Event[28] = new Date(2010,5,7);//June Muster
//Event[33] = new Date(2010,5,21);//Flag Day, Brookline MA
Event[29] = new Date(2010,6,4);//4th of July Parade
Event[30] = new Date(2010,8,13);//September Muster
Event[31] = new Date(2010,8,18);//Faire setup day
//Event[31] = new Date(2010,8,20);//Applefest Rainday
Event[32] = new Date(2010,8,25);//Colonial Faire
Event[33] = new Date(2010,9,30);//Battle of Red Horse Tavern

EventTitle = new Array();
EventTitle[0] = "September Muster";
//EventTitle[1] = "Northborough Applefest Parade";
EventTitle[1] = "Faire Setup Day";
EventTitle[2] = "Colonial Faire";
EventTitle[3] = "October Muster";
EventTitle[4] = "Drill at Willard Clock Museum";
EventTitle[5] = "November Muster";
EventTitle[6] = "Battle of Red Horse Tavern";
EventTitle[7] = "Grist Mill&rsquo;s 80<sup>th</sup> Birthday Celebration";
EventTitle[8] = "December Muster"
EventTitle[9] = "Route Committee Meeting";
EventTitle[10] = "January Muster";
EventTitle[11] = "Twelfth Night Ball";
EventTitle[12] = "Route Committee Meeting";
EventTitle[13] = "Musket Drill";
EventTitle[14] = "February Muster";
//EventTitle[12] = "Musket Drill";
//EventTitle[13] = "Route Committee Meeting";
EventTitle[15] = "Faire Committee Meeting";
EventTitle[16] = "Musket Drill";
//EventTitle[15] = "Musket Drill";
EventTitle[17] = "March Muster";
EventTitle[18] = "Musket Drill";
EventTitle[19] = "Ordinary Evening";
//EventTitle[19] = "Faire Committee Meeting";
EventTitle[20] = "Musket Drill";
EventTitle[21] = "Musket Drill";
//EventTitle[22] = "Sudbury Day Festival";
EventTitle[22] = "April Muster";
//EventTitle[24] = "Faire Committee Meeting";
EventTitle[23] = "Sudbury March to Concord";
EventTitle[24] = "Patriots Day Blood Drive";
EventTitle[25] = "Grand Ball at the Red Horse Tavern<br><span style='font-size:smaller;'>formerly the Regimental Ball</span>";
EventTitle[26] = "May Muster";
//EventTitle[28] = "Faire Committee Meeting";
//EventTitle[29] = "Stow Springfest Parade";
//EventTitle[30] = "Musket Salute for Book Launch";
//EventTitle[26] = "Live Shoot";
EventTitle[27] = "Memorial Day Parade, Sudbury";
//EventTitle[24] = "Muster at Willard Clock Museum";
EventTitle[28] = "June Muster";
//EventTitle[33] = "Flag Day Parade, Brookline";
EventTitle[29] = "4th of July Parade, Sudbury";
EventTitle[30] = "September Muster"
EventTitle[31] = "Faire Setup Day";
//EventTitle[31] = "Northborough Applefest Parade";
EventTitle[32] = "Colonial Faire";
EventTitle[33] = "Battle of the Red Horse Tavern";

EventAct = new Array();
EventAct[0] = "The Faire Committee will present a final update on preparations for the Faire.<br> We will also elect our next Quartermaster.";
//EventAct[1] = "An easy one mile parade with many musket volleys. Email <a class='mainLink' href='mailto:mlamkin@rcn.com'>Mark Lamkin</a> or call him at 508-788-9912."
EventAct[1] = "Help set up the militia and vendor booths for the faire. For more information, contact <a class='mainLink' href='mailto:j_neuhauser1@yahoo.com'>John Neuhauser</a>.";
EventAct[2] = "Reenactors, Food, Vendors, and Games. Celebrate Harvest Season in a Colonial Style. For more information, contact <a class='mainLink' href='mailto:j_neuhauser1@yahoo.com'>John Neuhauser</a>.";
EventAct[3] = "Mike Tougias will send us back in time as he tells us about the King Philip&rsquo;s War.";
EventAct[4] = " Drill at the Willard House and Clock Museum during their Fall Harvest Celebration.";
EventAct[5] = "Some may question whether the Sudbury River even flows through Sudbury but this month&rsquo;s speaker, Brian Donahue, will explore with us the Sudbury River’s past, its role in the settling of Sudbury and how it influenced the shaping Sudbury in its early days. Steve Pano, Ranger Reproductions will be on hand to sell you anything you need and/or didn’t have a chance pick up at the faire.  If you have any special requests please contact Steve, 508-852-5527.";
EventAct[6] = "The Sudbury Militia will host a day of military activities and battle re-enactments on the grounds of the historic Wayside Inn.";
EventAct[7] = "Get ready to fire a salute to mark the 80th anniversary of the grist mill. Later have a slice of birthday cake made from flour produced in the mill.";
EventAct[8] = "Our annual holidays celebration. We are thrilled again to have the Jolly Rogues entertain us.";
EventAct[9] = "The Route Committee is looking for a few good volunteers to help plan the this year&rsquo;s March on April 19 and to find ways to roast our Colonel. For more information, contact <a class='mainLink' href='mailto:ltcolonel@sudburyminutemen.org'>Jim Doherty</a>.";
EventAct[10] = "Be warned. This month&rsquo;s muster guest will be Chris Woolf, from the King&rsquo;s Own. He always comes unscripted.";
EventAct[11] = "Contra dancing with music by Yankee Ingenuity<br>Additional details can be found at <a class='mainLink' href='12thNiteBall.htm'>Twelfth Night Ball</a>. For more information, email <a class='mainLink' href='mailto:colonel@sudburyminutemen.org'>John Neuhauser</a>.";
EventAct[12] = "Join the Route Committee as it continues its plans for the this year&rsquo;s March on April 19 and how to roast our Colonel. For more information, contact <a class='mainLink' href='mailto:ltcolonel@sudburyminutemen.org'>Jim Doherty</a>.";
EventAct[13] = "One of a series of drills that will qualify you to fire on the North Bridge.<br>Bring your musket, cartridge box and whisk and pick. Come in kit.";
EventAct[14] = "Diane Rapaport will be this month&rsquo;s speaker. She is the author of &quot;The Naked Quaker: True Crimes and Controversies from the Courts of Colonial New England.&quot;<br>This is also our annual meeting and you will be asked to vote on two proposed amendments to our bylaws. Check the <a class='mainLink' href='notice.pdf'>muster notice</a> for these proposed amendments.";
//EventAct[12] = "One of a series of drills that will qualify you to fire on the North Bridge.<br>Bring your musket, cartridge box, whisk and pick, and tricorn. Come in kit if possible.";
//EventAct[13] = "The Route Committee is looking for a few good volunteers to help plan the this year&rsquo;s March on April 19 and to find ways to roast our Colonel. For more information, contact <a class='mainLink' href='mailto:ltcolonel@sudburyminutemen.org'>John Neuhauser</a>.";
EventAct[15] = "The Faire Committee will be holding its first meeting to plan this year&rsquo;s faire. Join us and learn how this year&rsquo;s faire can be even better than last year&rsquo;s with your help. For more information, contact <a class='mainLink' href='mailto:faire@sudburyminutemen.org'>Matthew Mees</a>.";
EventAct[16] = "One of a series of drills that will qualify you to fire on the North Bridge.<br>Bring your musket, cartridge box and whisk and pick. Come in kit.";
//EventAct[15] = "One of a series of drills that will qualify you to fire on the North Bridge.<br>Bring your musket, cartridge box, whisk and pick, and tricorn. Come in kit if possible.";
EventAct[17] = "Adjutant Carl Hutchinson and Safety Officer Larry Leonard with be giving a presentation on black powder safety and musket safety.";//Vanessa Wiegel will update us on her cinematic creation, &rsquo;A Year in the Life of the Sudbury Militia&rsquo;.";
EventAct[18] = "One of a series of drills that will qualify you to fire on the North Bridge.<br>Bring your musket, cartridge box and whisk and pick. Come in kit.";
EventAct[19] = "Enjoy an evening dining in the company of provincials.<br>More information at <a class='mainLink' href='EveningOrdinary.htm' target='_blank'>Ordinary Evening</a>."
//EventAct[19] = "The Faire Committee will be holding another meeting to plan the faire. For more information, contact <a class='mainLink' href='mailto:emxmees@juno.com'>Matthew Mees</a>.";
EventAct[20] = "One of a series of drills that will qualify you to fire on the North Bridge.<br>Bring your musket, cartridge box and whisk and pick. Come in kit.";
EventAct[21] = "One of a series of drills that will qualify you to fire on the North Bridge.<br>Bring your musket, cartridge box and whisk and pick. Come in kit.";
//EventAct[22] = "Help Sudbury celebrate this year&rsquo;s theme of &quot;The Spirit of 1776.&quot; More details to follow but we will probably do a short parade, some drilling and if it is nice enough outside, perhaps some firing. The Lt. Colonel thinks we&rsquo;ll only be needed for about an hour.Please <a href='mailto:ltcolonel@sudburyminutemen.org'>email him</a> so he can get an idea about the turnout.";
EventAct[22] = "The Route and Safety Committee will give us a last minute update on plans for this year&rsquo;s march to Concord. Who knows what they might say about Colonel Neuhauser?";
//EventAct[24] = "The Faire Committee will be holding another meeting to plan the faire. For more information, contact <a class='mainLink' href='mailto:emxmees@juno.cm'>Matthew Mees</a>.";
EventAct[23] = "Show your fortitude and love of local history with this annual march through Wayland and Sudbury to Concord. Please note that only those vetted by Col. Neuhauser will be able to fire from the North Bridge. For more information, contact <a class='mainLink' href='mailto:colonel@sudburyminutemen.org'>Col. John Neuhauser</a>.";
EventAct[24] = "The Sudbury Historical Society has asked for our support in their Patriots Day Blood Drive. They are hoping for a few of us will dress in kit and meet and greet blood donors. Those of you who no longer make the march but would like to demonstrate that you are part of the Sudbury Militia are particularly encouraged to help. For more information, contact Lee Swanson at 978-443-3747.";
EventAct[25] = "Join the Sudbury Companies on a beautiful Spring evening for a Contra Dance!  For more information, check <a class='mainLink' href='GrandBall.htm' target='_blank'>Grand Ball at the Red Horse Tavern</a> or contact <a class='mainLink' href='mailto:colonel@sudburyminutemen.org'>Col. John Neuhauser.</a>";
EventAct[26] = "To be announced";
//EventAct[28]= "The Faire Committee will be holding another meeting to plan the faire. For more information, contact <a class='mainLink' href='mailto:emxmees@juno.cm'>Matthew Mees</a>.";
//EventAct[29] = "Short parade, 1/2 to 3/4 mile. Park near the Brookside Cemetery at the top of <a class='mainLink' href='http://maps.google.com/maps?q=Box+Mill+Rd+Stow+MA'>Box Mill Rd.</a> After the parade, stop by the Stow Minutemen&rsquo;s encampment. Please contact <a class='mainLink' href='mailto:ltcolonel@sudburyminutemen.org'>Lt. Col. John Neuhauser</a> so he can get an idea about the turnout.";
//EventAct[30] = "Participate in a salute at the tombtone of Timothy Bigelow as part of the launch of Ray Raphael&rsquo;s book, &quot;Founders: The People Who Brought You a Nation.&quot;";
//EventAct[26] = "Try your hand at hitting targets during a live shoot.";
EventAct[27] = "Salute to all those who sacrificed their lives so that we may enjoy freedom.  For more information, contact <a class='mainLink' href='mailto:colonel@sudburyminutemen.org'>Col. John Neuhauser</a>."
//EventAct[24] = "We will drill and provide color at this annual event at the <a class='mainLink' href='http://maps.google.com/maps?q=11+Willard+St+North+Grafton+MA'>Willard Clock Museum</a>. Entertainment for children and adults. Contact <a class='mainLink' href='mailto:colonel@sudburyminutemen.org'>John Neuhauser</a> or call him at 508-788-9912 for more information or to let him know you are interested in volunteering for this ev2ent.";
EventAct[28] = "To be announced";
//EventAct[33] = "Join in Brookline's flag celebration.";
EventAct[29] = "Celebration of our nation&rsquo;s independence with a venerable, vibrant parade through Sudbury!";
EventAct[30] = "The Faire Committee will present a final update on preparations for the Faire.<br> We will elect our next Quartermaster.";
EventAct[31] = "Help set up the militia and vendor booths for the faire."; // For more information, contact <a class='mainLink' href='mailto:j_neuhauser1@yahoo.com'>John Neuhauser</a>.";
//EventAct[31] = "<span style='color:red'>The Sudbury Militia will not be marching in this year&rsquo;s parade.</span>"
EventAct[32] = "Reenactors, Food, Vendors, and Games. Celebrate Harvest Season in a Colonial Style."; //For more information, contact <a class='mainLink' href='mailto:j_neuhauser1@yahoo.com'>John Neuhauser</a>.";
EventAct[33] = "The Sudbury Militia will host a day of military activities and battle re-enactments on the grounds of the historic Wayside Inn.";

EventDetail = new Array();
EventDetail[0] = "8:00 pm in the Ballroom at Wayside Inn, Sudbury.";
//EventDetail[1] = "11:30 am at <a class='mainLink' href='http://maps.google.com/maps?q=Lincoln+Elementary+School+Northborough+MA'>Lincoln Street Elementary School</a>, Northborough, Step off at 12:00 noon.<br>Rain date is Sunday, Sept. 16."
EventDetail[1] = "8:00 am at <a class='mainLink' href='http://maps.google.com/maps?q=163+Landham+Road+Sudbury+MA'>Hal Culter's barn</a>, Landham Road, Sudbury or 9:00 am at the muster field at the Wayside Inn.";
EventDetail[2] = "10:00 am - 4:00 pm, Saturday, September 26, 2009, at the Wayside Inn, Sudbury. Rain or shine.";
EventDetail[3] = "8:00 pm in the Ballroom at the Wayside Inn, Sudbury.";
EventDetail[4] = "Arrive at 2:30 pm, event is from 3:00 to 5:00 pm at the <a class='mainLink' href='http://maps.google.com/maps?q=11+Willard+St+North+Grafton+MA'>Willard House and Clock Museum</a>. Contact <a class='mainLink' href='mailto:safety@sudburyminutemen.org'>Larry Leonard</a> for more information or to let him know you are interested in drilling at this event.";
EventDetail[5] = "8:00 pm in the Ballroom at the Wayside Inn, Sudbury.";
EventDetail[6] = "10:30 am - 3:00 pm noon at the Wayside Inn, Sudbury.<br>Rain date is Nov. 8.<br><a class='mainLink' href='redhorse.htm'>Information</a>, including schedule and participating units.";
EventDetail[7] = "Meet at the front of the inn at 10:30 am. Event runs from from 11:00 am to 1:00 pm but feel free to leave after the musket volleys.";
EventDetail[8] = "7:30 pm for the candlelight procession from the Wayside Inn to the Martha Mary Chapel. 8:00 pm at the Martha Mary Chapel."
EventDetail[9] = "8:00 pm at the Wayside Inn, Sudbury.";
EventDetail[10] = "8:00 pm in the Ballroom at Wayside Inn, Sudbury.";
EventDetail[11] = "8:00 pm in the Main Dining Room at Wayside Inn, Sudbury.";
EventDetail[12] = "8:00 pm at the Wayside Inn, Sudbury.";
EventDetail[13] = "1:00 to 3:00 pm at the Wayside Inn.<br><a class='mainLink' href='drill.htm'>Additional information</a>";
EventDetail[14] = "8:00 pm in the Ballroom at the Wayside Inn, Sudbury.";
//EventDetail[10] = "7:30 pm in the Museum Room at the Wayside Inn, Sudbury.";
//EventDetail[12] = "noon to 2:00 pm at the Wayside Inn.<br><a href='drill.htm'>Additional information</a>";
//EventDetail[13] = "8:00 pm in the Ballroom at the Wayside Inn, Sudbury.";
EventDetail[15] = "7:00 pm at the Wayside Inn, Sudbury.";
//EventDetail[14] = "&nbsp;";
EventDetail[16] = "1:00 to 3:00 pm at the Wayside Inn.<br><a class='mainLink' href='drill.htm'>Additional information</a>";
EventDetail[17] = "7:30 pm in the Museum Room at the Wayside Inn, Sudbury.";
EventDetail[18] = "1:00 to 3:00 pm at the Wayside Inn.<br><a class='mainLink' href='drill.htm'>Additional information</a>";
EventDetail[19] = "6:00 to 10:00 pm in the Ford Room. Reservations required.";
//EventDetail[19] = "8:00 pm in the Ballroom at the Wayside Inn, Sudbury.";
EventDetail[20] = "1:00 to 3:00 pm at the Wayside Inn.<br><a class='mainLink' href='drill.htm'>Additional information</a>";
EventDetail[21] = "1:00 to 3:00 pm at the Wayside Inn.<br><a class='mainLink' href='drill.htm'>Additional information</a>";
//EventDetail[22] = "Meet at the <a class='mainLink' href='http://maps.google.com/maps?q=Lincoln-Sudbury+High+School+Sudbury,+MA'>Lincoln-Sudbury High School</a> at 11:30 am. Parade to step off at noon.";
EventDetail[22] = "8:00 pm in the Ballroom at the Wayside Inn, Sudbury.";
//EventDetail[24] = "7:00 pm at the Wayside Inn."
EventDetail[23] = "3:45 am Wayland Center; 5:30 am Sudbury Center. Please be prompt.";
EventDetail[24] = "10 am to 3 pm, Sudbury Town Hall, 322 Concord Rd., Sudbury, MA 01776. Any time you can volunteer really helps.";
EventDetail[25] = "8:00 pm in Main Dining Room at the Wayside Inn, Sudbury.";
EventDetail[26] = "8:00 pm in the Ballroom at Wayside Inn, Sudbury.";
//EventDetail[28] = "7:00 pm at the Wayside Inn."
//EventDetail[29] = "Step off at 10:00 am, assemble before 9:30 am.";
//EventDetail[30] = "Meet at 12:30 pm on the Historic Worcester Common, Main Street, Worcester, Massachusetts. For more information, contact <a class='mainLink' href='mailto:safety@sudburyminutemen.org'>Larry Leonard</a>.";
//EventDetail[26] = "Maynard Rod and Gun Club. Additional details to be announced later.";
EventDetail[27] = "7:30 am, Minuteman Statue near Sudbury Town Hall for salute then board bus for trips to Old and New North Cemetaries.<br>9:00 am, Rugged Bear Plaza, Rt. 20, Sudbury. Parade steps off at 9:30 am.";
EventDetail[28] = "8:00 pm in the Ballroom at Wayside Inn, Sudbury.";
//EventDetail[33] = "Arrive by 10:30 am at <a class='mainLink' href='http://maps.google.com/maps?q=Tappan+St+and%20+Greenough+St+Brookline,+MA'>Cypress Street Playground parking area</a>, near Brookline HS, Tappan Street and Greenough Street, for shuttle to assembly point. Shuttle should get us to assembly point at 525 Harvard St. at approx. 11:00 am. Step off at 12 noon. For more information, contact <a class='mainLink' href='mailto:colonel@sudburyminutemen.org'>Col. John Neuhauser</a>. Please display <a class='mainLink' href='parkingpermit.jpg'>parking pass</a> on windshield.";
EventDetail[29] = "Assemble on Union Ave. near Station Road (near Route 20) in Sudbury by 12 noon with step off at 1:00 pm. Park either at the starting location or at the end of the parade near town hall. Shuttle bus provided to get you to your car. Bring lots of powder! Return to the Wayside Inn for flag changing ceremomy. For more information contact <a class='mainLink' href='mailto:colonel@sudburyminutemen.org'>Col. John Neuhauser</a>.";
EventDetail[30] = "8:00 pm in the Ballroom at the Wayside Inn, Sudbury.";
EventDetail[31] = "8:00 am at Hal Culter's barn, Landham Road, Sudbury or 9:00 am at the muster field at the Wayside Inn.";
EventDetail[32] = "10:00 am - 4:00 pm at the Wayside Inn, Sudbury.";
EventDetail[33] = "Details to be announced later.";
