// var statements below define the arrays for the dropdown menues.  UnionStateArray/ConfederateStateArray will fill the second dropdown menu, UnionBranchArray/ConfederateBranchArray will fill the third drop down and so on.

<!-- Begin

// Begin desktop array information

// UnionStateArray stores the values of the states who were engaged on the Union side.  When the user selects Federal in the first drop down menu, the second menu will be populated from the information contained in this array.
var UnionStateArray = new Array("('Select a State','',true,true)",
"('United States Regular Army','UnionUSBranchArray')",
"('Illinois','UnionILBranchArray')",
"('Indiana','UnionINBranchArray')",
"('Iowa','UnionIABranchArray')",
"('Kentucky','UnionKYBranchArray')",
"('Michigan','UnionMIBranchArray')",
"('Minnesota','UnionMNBranchArray')",
"('Missouri','UnionMOBranchArray')",
"('Nebraska','UnionNEBranchArray')",
"('Ohio','UnionOHBranchArray')",
"('Pennsylvania','UnionPABranchArray')",
"('Wisconsin','UnionWIBranchArray')"
);

// UnionUSBranchArray stores the values of the branches engaged on the Union side, from United States "state."  When the user selects "United States" in the second drop down menu, the third menu will be populated from the information contained in this array.
var UnionUSBranchArray = new Array("('Select a Branch','',true,true)",
"('Artillery','UnionUSArtilleryUnitsArray')",
"('Cavalry','UnionUSCavalryUnitsArray')",
"('Infantry','UnionUSInfantryUnitsArray')"
);

	// UnionUSArtilleryUnitsArray stores the values of the artillery units engaged on the Union side, from the United States "state."  When the user selects "Federal", "United States" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionUSArtilleryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Terrills Battery (H), 5th United States Artillery','results.asp?varCWUNIT=UUS0005RALH&Submit=Submit')",
	"('Mendenhalls Batteries (H & M), 4th United States Artillery','results.asp?varCWUNIT=UUS0004RALHM&Submit=Submit')"
	);

	// UnionUSCavalryUnitsArray stores the values of the cavalry units engaged on the Union side, from the United States "state."  When the user selects "Federal", "United States" and "Cavalry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionUSCavalryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Company I, 4th United States Cavalry','results.asp?varCWUNIT=UUS0004RC*I&Submit=Submit')",
	"('Company C, 2nd United States Cavalry','results.asp?varCWUNIT=UUS0002RC*C&Submit=Submit')"
	);
	
	// UnionUSInfantryUnitsArray stores the values of the infantry units engaged on the Union side, from the United States "state."  When the user selects "Federal", "United States" and "Infantry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionUSInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('1st Battalion, 15th United States Infantry','results.asp?varCWUNIT=UUS0015RI*1&Submit=Submit')",
	"('1st Battalion, 16th United States Infantry','results.asp?varCWUNIT=UUS0016RI*1&Submit=Submit')",
	"('1st Battalion, 19th United States Infantry','results.asp?varCWUNIT=UUS0019RI*1&Submit=Submit')"
	);

// UnionILBranchArray stores the values of the branches engaged on the Union side, from Illinois.  When the user selects "Illinois" in the second drop down menu, the third menu will be populated from the information contained in this array.
var UnionILBranchArray = new Array("('Select a Branch','',true,true)",
"('Artillery','UnionILArtilleryUnitsArray')",
"('Cavalry','UnionILCavalryUnitsArray')",
"('Infantry','UnionILInfantryUnitsArray')"
);

	// UnionILArtilleryUnitsArray stores the values of the artillery units engaged on the Union side, from Illinois.  When the user selects "Federal", "Illinois" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionILArtilleryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Battery B, 2nd Illinois Light Artillery, Siege Guns','results.asp?varCWUNIT=UIL0002RALB&Submit=Submit')",
	"('Battery F [Powells], 2nd Illinois Light Artillery','results.asp?varCWUNIT=UIL0002RALF&Submit=Submit')",
	"('Battery H [Silfversparres], 1st Illinois Light Artillery','results.asp?varCWUNIT=UIL0001RALH&Submit=Submit')",
	"('Battery I, 1st Illinois Light Artillery','results.asp?varCWUNIT=UIL0001RALI&Submit=Submit')",
	"('Dressers Battery (D), 2nd Illinois Light Artillery','results.asp?varCWUNIT=UIL0002RALD&Submit=Submit')",
	"('McAllisters Battery (D), 1st Illinois Light Artillery','results.asp?varCWUNIT=UIL0001RALD&Submit=Submit')",
	"('Schwartzs Battery (E), 2nd Illinois Light Artillery','results.asp?varCWUNIT=UIL0002RALE&Submit=Submit')",
	"('Taylors Battery (B), 1st Illinois Light Artillery','results.asp?varCWUNIT=UIL0001RALB&Submit=Submit')",
	"('Waterhouses Battery (E), 1st Illinois Light Artillery','results.asp?varCWUNIT=UIL0001RALE&Submit=Submit')",
	"('Willards Battery (A), 1st Illinois Light Artillery','results.asp?varCWUNIT=UIL0001RALA&Submit=Submit')"
	);

	// UnionILCavalryUnitsArray stores the values of the cavalry units engaged on the Union side, from Illinois.  When the user selects "Federal", "Illinois" and "Cavalry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionILCavalryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('1st & 2nd Battalions, 11th Illinois Cavalry','results.asp?varCWUNIT=UIL0011RC*12&Submit=Submit')",
	"('1st Battalion, 4th Illinois Cavalry','results.asp?varCWUNIT=UIL0004RC*1&Submit=Submit')",
	"('2nd & 3rd Battalions, 4th Illinois Cavalry','results.asp?varCWUNIT=UIL0004RC*23&Submit=Submit')",
	"('3rd Battalion, 11th Illinois Cavalry','results.asp?varCWUNIT=UIL0011RC*3&Submit=Submit')",
	"('Carmichaels Company, Illinois Cavalry','results.asp?varCWUNIT=UIL0015RC*B&Submit=Submit')",
	"('Company A, 2nd Illinois Cavalry','results.asp?varCWUNIT=UIL0002RC*A&Submit=Submit')",
	"('Company B, 2nd Illinois Cavalry','results.asp?varCWUNIT=UIL0002RC*B&Submit=Submit')",
	"('Stewarts Company, Illinois Cavalry','results.asp?varCWUNIT=UIL0015RC*A&Submit=Submit')",
	"('Thielemanns two companies, Illinois Cavalry','results.asp?varCWUNIT=UIL0016RC*B&Submit=Submit')"
	);

	// UnionILInfantryUnitsArray stores the values of the cavalry units engaged on the Union side, from Illinois.  When the user selects "Federal", "Illinois" and "Cavalry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionILInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('7th Illinois Infantry','results.asp?varCWUNIT=UIL0007RI01&Submit=Submit')",
	"('8th Illinois Infantry','results.asp?varCWUNIT=UIL0008RI01&Submit=Submit')",
	"('9th Illinois Infantry','results.asp?varCWUNIT=UIL0009RI01&Submit=Submit')",
	"('11th Illinois Infantry','results.asp?varCWUNIT=UIL0011RI01&Submit=Submit')",
	"('12th Illinois Infantry','results.asp?varCWUNIT=UIL0012RI01&Submit=Submit')",
	"('14th Illinois Infantry','results.asp?varCWUNIT=UIL0014RI&Submit=Submit')",
	"('15th Illinois Infantry','results.asp?varCWUNIT=UIL0015RI&Submit=Submit')",
	"('17th Illinois Infantry','results.asp?varCWUNIT=UIL0017RI&Submit=Submit')",
	"('18th Illinois Infantry','results.asp?varCWUNIT=UIL0018RI&Submit=Submit')",
	"('20th Illinois Infantry','results.asp?varCWUNIT=UIL0020RI&Submit=Submit')",
	"('28th Illinois Infantry','results.asp?varCWUNIT=UIL0028RI&Submit=Submit')",
	"('29th Illinois Infantry','results.asp?varCWUNIT=UIL0029RI&Submit=Submit')",
	"('32nd Illinois Infantry','results.asp?varCWUNIT=UIL0032RI&Submit=Submit')",
	"('34th Illinois Infantry','results.asp?varCWUNIT=UIL0034RI&Submit=Submit')",
	"('40th Illinois Infantry','results.asp?varCWUNIT=UIL0040RI&Submit=Submit')",
	"('41st Illinois Infantry','results.asp?varCWUNIT=UIL0041RI&Submit=Submit')",
	"('43rd Illinois Infantry','results.asp?varCWUNIT=UIL0043RI&Submit=Submit')",
	"('45th Illinois Infantry','results.asp?varCWUNIT=UIL0045RI&Submit=Submit')",
	"('46th Illinois Infantry','results.asp?varCWUNIT=UIL0046RI&Submit=Submit')",
	"('48th Illinois Infantry','results.asp?varCWUNIT=UIL0048RI&Submit=Submit')",
	"('49th Illinois Infantry','results.asp?varCWUNIT=UIL0049RI&Submit=Submit')",
	"('50th Illinois Infantry','results.asp?varCWUNIT=UIL0050RI&Submit=Submit')",
	"('52nd Illinois Infantry','results.asp?varCWUNIT=UIL0052RI&Submit=Submit')",
	"('55th Illinois Infantry','results.asp?varCWUNIT=UIL0055RI&Submit=Submit')",
	"('57th Illinois Infantry','results.asp?varCWUNIT=UIL0057RI&Submit=Submit')",
	"('58th Illinois Infantry','results.asp?varCWUNIT=UIL0058RI&Submit=Submit')",
	"('61st Illinois Infantry','results.asp?varCWUNIT=UIL0061RI&Submit=Submit')"
	);

// UnionINBranchArray stores the values of the branches engaged on the Union side, from Indiana.  When the user selects "Indiana" in the second drop down menu, the third menu will be populated from the information contained in this array.
var UnionINBranchArray = new Array("('Select a Branch','',true,true)",
"('Artillery','UnionINArtilleryUnitsArray')",
"('Cavalry','UnionINCavalryUnitsArray')",
"('Infantry','UnionINInfantryUnitsArray')"
);

	// UnionINArtilleryUnitsArray stores the values of the artillery units engaged on the Union side, from Indiana.  When the user selects "Federal", "Indiana" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionINArtilleryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Morton Battery, 6th Indiana Light Artillery','results.asp?varCWUNIT=UIN0006YAL&Submit=Submit')",
	"('Thompsons Battery, 9th Indiana Light Artillery','results.asp?varCWUNIT=UIN0009YAL&Submit=Submit')"
	);

	// UnionINCavalryUnitsArray stores the values of the cavalry units engaged on the Union side, from Indiana.  When the user selects "Federal", "Indiana" and "Cavalry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionINCavalryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('2nd Indiana Cavalry','results.asp?varCWUNIT=UIN0002RC&Submit=Submit')",
	"('39th Indiana Infantry','results.asp?varCWUNIT=UIN0008RC&Submit=Submit')"
	);

	// UnionINInfantryUnitsArray stores the values of the infantry units engaged on the Union side, from Indiana.  When the user selects "Federal", "Indiana" and "Infantry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionINInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('6th Indiana Infantry','results.asp?varCWUNIT=UIN0006RI01&Submit=Submit')",
	"('9th Indiana Infantry','results.asp?varCWUNIT=UIN0009RI01&Submit=Submit')",
	"('11th Indiana Infantry','results.asp?varCWUNIT=UIN0011RI01&Submit=Submit')",
	"('15th Indiana Infantry','results.asp?varCWUNIT=UIN0015RI&Submit=Submit')",
	"('17th Indiana Infantry','results.asp?varCWUNIT=UIN0017RI&Submit=Submit')",
	"('23rd Indiana Infantry','results.asp?varCWUNIT=UIN0023RI&Submit=Submit')",
	"('24th Indiana Infantry','results.asp?varCWUNIT=UIN0024RI&Submit=Submit')",
	"('25th Indiana Infantry','results.asp?varCWUNIT=UIN0025RI&Submit=Submit')",
	"('29th Indiana Infantry','results.asp?varCWUNIT=UIN0029RI&Submit=Submit')",
	"('30th Indiana Infantry','results.asp?varCWUNIT=UIN0030RI&Submit=Submit')",
	"('31st Indiana Infantry','results.asp?varCWUNIT=UIN0031RI&Submit=Submit')",
	"('32nd Indiana Infantry','results.asp?varCWUNIT=UIN0032RI&Submit=Submit')",
	"('36th Indiana Infantry','results.asp?varCWUNIT=UIN0036RI&Submit=Submit')",
	"('40th Indiana Infantry','results.asp?varCWUNIT=UIN0040RI&Submit=Submit')",
	"('44th Indiana Infantry','results.asp?varCWUNIT=UIN0044RI&Submit=Submit')",
	"('51st Indiana Infantry','results.asp?varCWUNIT=UIN0051RI&Submit=Submit')",
	"('57th Indiana Infantry','results.asp?varCWUNIT=UIN0057RI&Submit=Submit')",
	"('58th Indiana Infantry','results.asp?varCWUNIT=UIN0058RI&Submit=Submit')"
	);

// UnionIABranchArray stores the values of the branches engaged on the Union side, from Iowa.  When the user selects "Iowa" in the second drop down menu, the third menu will be populated from the information contained in this array.
var UnionIABranchArray = new Array("('Select a Branch','',true,true)",
"('Infantry','UnionIAInfantryUnitsArray')"
);

	// UnionIAInfantryUnitsArray stores the values of the artillery units engaged on the Union side, from Iowa.  When the user selects "Federal", "Iowa" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionIAInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('2nd Iowa Infantry','results.asp?varCWUNIT=UIA0002RI&Submit=Submit')",
	"('3rd Iowa Infantry','results.asp?varCWUNIT=UIA0003RI&Submit=Submit')",
	"('6th Iowa Infantry','results.asp?varCWUNIT=UIA0006RI&Submit=Submit')",
	"('7th Iowa Infantry','results.asp?varCWUNIT=UIA0007RI&Submit=Submit')",
	"('8th Iowa Infantry','results.asp?varCWUNIT=UIA0008RI&Submit=Submit')",
	"('11th Iowa Infantry','results.asp?varCWUNIT=UIA0011RI&Submit=Submit')",
	"('12th Iowa Infantry','results.asp?varCWUNIT=UIA0012RI&Submit=Submit')",
	"('13th Iowa Infantry','results.asp?varCWUNIT=UIA0013RI&Submit=Submit')",
	"('14th Iowa Infantry','results.asp?varCWUNIT=UIA0014RI&Submit=Submit')",
	"('15th Iowa Infantry','results.asp?varCWUNIT=UIA0015RI&Submit=Submit')",
	"('16th Iowa Infantry','results.asp?varCWUNIT=UIA0016RI&Submit=Submit')"
	);

// UnionKYBranchArray stores the values of the branches engaged on the Union side, from Kentucky.  When the user selects "Kentucky" in the second drop down menu, the third menu will be populated from the information contained in this array.
var UnionKYBranchArray = new Array("('Select a Branch','',true,true)",
"('Infantry','UnionKYInfantryUnitsArray')"
);

	// UnionKYInfantryUnitsArray stores the values of the artillery units engaged on the Union side, from Iowa.  When the user selects "Federal", "Kentucky" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionKYInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('1st Kentucky Infantry','results.asp?varCWUNIT=UKY0001RI01&Submit=Submit')",
	"('2nd Kentucky Infantry','results.asp?varCWUNIT=UKY0002RI01&Submit=Submit')",
	"('5th Kentucky Infantry','results.asp?varCWUNIT=UKY0005RI&Submit=Submit')",
	"('6th Kentucky Infantry','results.asp?varCWUNIT=UKY0006RI&Submit=Submit')",
	"('9th Kentucky Infantry','results.asp?varCWUNIT=UKY0009RI&Submit=Submit')",
	"('11th Kentucky Infantry','results.asp?varCWUNIT=UKY0011RI&Submit=Submit')",
	"('13th Kentucky Infantry','results.asp?varCWUNIT=UKY0013RI&Submit=Submit')",
	"('17th Kentucky Infantry','results.asp?varCWUNIT=UKY0017RI&Submit=Submit')",
	"('20th Kentucky Infantry','results.asp?varCWUNIT=UKY0020RI&Submit=Submit')",
	"('24th Kentucky Infantry','results.asp?varCWUNIT=UKY0024RI&Submit=Submit')",
	"('25th Kentucky Infantry','results.asp?varCWUNIT=UKY0025RI&Submit=Submit')",
	"('26th Kentucky Infantry','results.asp?varCWUNIT=UKY0026RI&Submit=Submit')"
	);

// UnionMIBranchArray stores the values of the branches engaged on the Union side, from Michigan.  When the user selects "Michigan" in the second drop down menu, the third menu will be populated from the information contained in this array.
var UnionMIBranchArray = new Array("('Select a Branch','',true,true)",
"('Artillery','UnionMIArtilleryUnitsArray')",
"('Infantry','UnionMIInfantryUnitsArray')"
);

	// UnionMIArtilleryUnitsArray stores the values of the artillery units engaged on the Union side, from Michigan.  When the user selects "Federal", "Michigan" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionMIArtilleryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Ross Battery (B), 2nd Michigan Light Artillery','results.asp?varCWUNIT=UMI0001RALB&Submit=Submit')"
	);
	
	// UnionMIInfantryUnitsArray stores the values of the artillery units engaged on the Union side, from Michigan.  When the user selects "Federal", "Michigan" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionMIInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('12th Michigan Infantry','results.asp?varCWUNIT=UMI0012RI&Submit=Submit')",
	"('13th Michigan Infantry','results.asp?varCWUNIT=UMI0013RI&Submit=Submit')",
	"('15th Michigan Infantry','results.asp?varCWUNIT=UMI0015RI&Submit=Submit')"
	);

// UnionMNBranchArray stores the values of the branches engaged on the Union side, from Minnesota.  When the user selects "Minnesota" in the second drop down menu, the third menu will be populated from the information contained in this array.
var UnionMNBranchArray = new Array("('Select a Branch','',true,true)",
"('Artillery','UnionMNArtilleryUnitsArray')"
);

	// UnionMNArtilleryUnitsArray stores the values of the artillery units engaged on the Union side, from Minnesota.  When the user selects "Federal", "Minnesota" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionMNArtilleryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Munchs Battery, 1st Minnesota Light Artillery','results.asp?varCWUNIT=UMN0001YAL&Submit=Submit')"
	);

// UnionMOBranchArray stores the values of the branches engaged on the Union side, from Missouri.  When the user selects "Missouri" in the second drop down menu, the third menu will be populated from the information contained in this array.
var UnionMOBranchArray = new Array("('Select a Branch','',true,true)",
"('Artillery','UnionMOArtilleryUnitsArray')",
"('Infantry','UnionMOInfantryUnitsArray')"
);

	// UnionMOArtilleryUnitsArray stores the values of the artillery units engaged on the Union side, from Missouri.  When the user selects "Federal", "Missouri" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionMOArtilleryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Buels Battery (I), 1st Missouri Light Artillery','results.asp?varCWUNIT=UMOBUELY&Submit=Submit')",
	"('Manns Battery (C), Missouri Light Artillery','results.asp?varCWUNIT=UMOMANNY&Submit=Submit')",
	"('Richardsons Battery (D), 1st Missouri Light Artillery','results.asp?varCWUNIT=UMO0001RALD&Submit=Submit')",
	"('Stones Battery (K), 1st Missouri Light Artillery','results.asp?varCWUNIT=UMO0001RALK&Submit=Submit')",
	"('Welkers Battery (H), 1st Missouri Light Artillery','results.asp?varCWUNIT=UMO0001RALH&Submit=Submit')"
	);
	
	// UnionMOInfantryUnitsArray stores the values of the artillery units engaged on the Union side, from Missouri.  When the user selects "Federal", "Missouri" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionMOInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('13th Missouri Infantry','results.asp?varCWUNIT=UOH0022RI01&Submit=Submit')",
	"('18th Missouri Infantry','results.asp?varCWUNIT=UMO0018RI&Submit=Submit')",
	"('21st Missouri Infantry','results.asp?varCWUNIT=UMO0021RI&Submit=Submit')",
	"('23rd Missouri Infantry','results.asp?varCWUNIT=UMO0023RI&Submit=Submit')",
	"('25th Missouri Infantry','results.asp?varCWUNIT=UMO0025RI&Submit=Submit')",
	"('28th Missouri Infantry','results.asp?varCWUNIT=UMO0028RI&Submit=Submit')"
	);

// UnionNEBranchArray stores the values of the branches engaged on the Union side, from Nebraska.  When the user selects "Nebraska" in the second drop down menu, the third menu will be populated from the information contained in this array.
var UnionNEBranchArray = new Array("('Select a Branch','',true,true)",
"('Infantry','UnionNEInfantryUnitsArray')"
);

	// UnionNEInfantryUnitsArray stores the values of the artillery units engaged on the Union side, from Nebraska.  When the user selects "Federal", "Nebraska" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionNEInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('1st Nebraska Infantry','results.asp?varCWUNIT=UNE0001RC&Submit=Submit')"
	);

// UnionOHBranchArray stores the values of the branches engaged on the Union side, from Ohio.  When the user selects "Ohio" in the second drop down menu, the third menu will be populated from the information contained in this array.
var UnionOHBranchArray = new Array("('Select a Branch','',true,true)",
"('Artillery','UnionOHArtilleryUnitsArray')",
"('Cavalry','UnionOHCavalryUnitsArray')",
"('Infantry','UnionOHInfantryUnitsArray')"
);

	// UnionOHArtilleryUnitsArray stores the values of the artillery units engaged on the Union side, from Ohio.  When the user selects "Federal", "Ohio" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionOHArtilleryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('8th Battery [Markgrafs], Ohio Light Artillery','results.asp?varCWUNIT=UOH0008YAL&Submit=Submit')",
	"('Bartletts Battery (G), 1st Ohio Light Artillery','results.asp?varCWUNIT=UOH0001RAL1G&Submit=Submit')",
	"('Burrows Battery, 14th Ohio Light Artillery','results.asp?varCWUNIT=UOH0014YAL&Submit=Submit')",
	"('Goodspeeds Battery (A), 1st Ohio Light Artillery','results.asp?varCWUNIT=UOH0001RAL1A&Submit=Submit')",
	"('Hickenloopers Battery, 5th Ohio Light Artillery','results.asp?varCWUNIT=UOH0005YAL&Submit=Submit')",
	"('Myers Battery, 13th Ohio Light Artillery','results.asp?varCWUNIT=UOH0013YAL&Submit=Submit')"
	);

	// UnionOHCavalryUnitsArray stores the values of the cavalry units engaged on the Union side, from Ohio.  When the user selects "Federal", "Ohio" and "Cavalry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionOHCavalryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('1st & 2nd Battalions, 5th Ohio Cavalry','results.asp?varCWUNIT=UOH0005RC*12&Submit=Submit')",
	"('3rd Battalion, 5th Ohio Cavalry','results.asp?varCWUNIT=UOH0005RC*3&Submit=Submit')"
	);

	// UnionOHInfantryUnitsArray stores the values of the cavalry units engaged on the Union side, from Ohio.  When the user selects "Federal", "Ohio" and "Cavalry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionOHInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('1st Ohio Infantry','results.asp?varCWUNIT=UOH0001RI01&Submit=Submit')",
	"('6th Ohio Infantry','results.asp?varCWUNIT=UOH0006RI01&Submit=Submit')",
	"('13th Ohio Infantry','results.asp?varCWUNIT=UOH0013RI01&Submit=Submit')",
	"('15th Ohio Infantry','results.asp?varCWUNIT=UOH0015RI01&Submit=Submit')",
	"('19th Ohio Infantry','results.asp?varCWUNIT=UOH0019RI01&Submit=Submit')",
	"('20th Ohio Infantry','results.asp?varCWUNIT=UOH0020RI01&Submit=Submit')",
	"('24th Ohio Infantry','results.asp?varCWUNIT=UOH0024RI&Submit=Submit')",
	"('41st Ohio Infantry','results.asp?varCWUNIT=UOH0041RI&Submit=Submit')",
	"('46th Ohio Infantry','results.asp?varCWUNIT=UOH0046RI&Submit=Submit')",
	"('48th Ohio Infantry','results.asp?varCWUNIT=UOH0048RI&Submit=Submit')",
	"('49th Ohio Infantry','results.asp?varCWUNIT=UOH0049RI&Submit=Submit')",
	"('53rd Ohio Infantry','results.asp?varCWUNIT=UOH0053RI&Submit=Submit')",
	"('54th Ohio Infantry','results.asp?varCWUNIT=UOH0054RI&Submit=Submit')",
	"('56th Ohio Infantry','results.asp?varCWUNIT=UOH0056RI&Submit=Submit')",
	"('57th Ohio Infantry','results.asp?varCWUNIT=UOH0057RI&Submit=Submit')",
	"('58th Ohio Infantry','results.asp?varCWUNIT=UOH0058RI&Submit=Submit')",
	"('59th Ohio Infantry','results.asp?varCWUNIT=UOH0059RI&Submit=Submit')",
	"('64th Ohio Infantry','results.asp?varCWUNIT=UOH0064RI&Submit=Submit')",
	"('65th Ohio Infantry','results.asp?varCWUNIT=UOH0065RI&Submit=Submit')",
	"('68th Ohio Infantry','results.asp?varCWUNIT=UOH0068RI&Submit=Submit')",
	"('70th Ohio Infantry','results.asp?varCWUNIT=UOH0070RI&Submit=Submit')",
	"('71st Ohio Infantry','results.asp?varCWUNIT=UOH0071RI&Submit=Submit')",
	"('72nd Ohio Infantry','results.asp?varCWUNIT=UOH0072RI&Submit=Submit')",
	"('76th Ohio Infantry','results.asp?varCWUNIT=UOH0076RI&Submit=Submit')",
	"('77th Ohio Infantry','results.asp?varCWUNIT=UOH0077RI&Submit=Submit')",
	"('78th Ohio Infantry','results.asp?varCWUNIT=UOH0078RI&Submit=Submit')",
	"('81st Ohio Infantry','results.asp?varCWUNIT=UOH0081RI&Submit=Submit')"
	);

// UnionPABranchArray stores the values of the branches engaged on the Union side, from Pennsylvania.  When the user selects "Pennsylvania" in the second drop down menu, the third menu will be populated from the information contained in this array.
var UnionPABranchArray = new Array("('Select a Branch','',true,true)",
"('Infantry','UnionPAInfantryUnitsArray')"
);

	// UnionPAInfantryUnitsArray stores the values of the artillery units engaged on the Union side, from Pennsylvania.  When the user selects "Federal", "Pennsylvania" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionPAInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('77th Pennsylvania Infantry','results.asp?varCWUNIT=UPA0077RI&Submit=Submit')"
	);

// UnionWIBranchArray stores the values of the branches engaged on the Union side, from Wisconsin.  When the user selects "Wisconsin" in the second drop down menu, the third menu will be populated from the information contained in this array.
var UnionWIBranchArray = new Array("('Select a Branch','',true,true)",
"('Infantry','UnionWIInfantryUnitsArray')"
);

	// UnionWIInfantryUnitsArray stores the values of the artillery units engaged on the Union side, from Wisconsin.  When the user selects "Federal", "Wisconsin" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var UnionWIInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('14th Wisconsin Infantry','results.asp?varCWUNIT=UWI0014RI&Submit=Submit')",
	"('16th Wisconsin Infantry','results.asp?varCWUNIT=UWI0016RI&Submit=Submit')",
	"('18th Wisconsin Infantry','results.asp?varCWUNIT=UWI0018RI&Submit=Submit')"
	);

// ConfederateStateArray stores the values of the states who were engaged on the Confederate side.  When the user selects Federal in the first drop down menu, the third menu will be populated from the information contained in this array.
var ConfederateStateArray = new Array("('Select a State','',true,true)",
"('Confederate States Regular Army','ConfederateCSBranchArray')",
"('Alabama','ConfederateALBranchArray')",
"('Arkansas','ConfederateARBranchArray')",
"('Florida','ConfederateFLBranchArray')",
"('Georgia','ConfederateGABranchArray')",
"('Kentucky','ConfederateKYBranchArray')",
"('Louisiana','ConfederateLABranchArray')",
"('Mississippi','ConfederateMSBranchArray')",
"('Missouri','ConfederateMOBranchArray')",
"('Tennessee','ConfederateTNBranchArray')",
"('Texas','ConfederateTXBranchArray')"
);

// ConfederateCSBranchArray stores the values of the branches engaged on the Confederate side, from Confederate States "state."  When the user selects "Confederate States" in the second drop down menu, the third menu will be populated from the information contained in this array.
var ConfederateCSBranchArray = new Array("('Select a Branch','',true,true)",
"('Artillery','ConfederateCSArtilleryUnitsArray')",
"('Cavalry','ConfederateCSCavalryUnitsArray')",
"('Infantry','ConfederateCSInfantryUnitsArray')"
);

	// ConfederateCSArtilleryUnitsArray stores the values of the artillery units engaged on the Confederate side, from the Confederate States "state."  When the user selects "Confederate", "Confederate States" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateCSArtilleryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Ketchums Alabama Battery','results.asp?varCWUNIT=CCSCOURBA&Submit=Submit')",
	"('Robertsons Alabama Battery','results.asp?varCWUNIT=CCSCOURBA *&Submit=Submit')"
	);

	// ConfederateCSCavalryUnitsArray stores the values of the cavalry units engaged on the Confederate side, from the Confederate States "state."  When the user selects "Confederate", "Confederate States" and "Cavalry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateCSCavalryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Mississippi & Alabama Battalion [Brewers] Cavalry','results.asp?varCWUNIT=CCS0008RC02&Submit=Submit')"
	);
	
	// ConfederateCSInfantryUnitsArray stores the values of the infantry units engaged on the Confederate side, from the Confederate States "state."  When the user selects "Confederate", "Confederate States" and "Infantry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateCSInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('2nd Confederate Infantry','results.asp?varCWUNIT=CCS0002RI&Submit=Submit')",
	"('3rd Confederate Infantry','results.asp?varCWUNIT=CCS0003RI&Submit=Submit')"
	);

// ConfederateALBranchArray stores the values of the branches engaged on the Confederate side, from Confederate States "Alabama."  When the user selects "Confederate States" in the second drop down menu, the third menu will be populated from the information contained in this array.
var ConfederateALBranchArray = new Array("('Select a Branch','',true,true)",
"('Artillery','ConfederateALArtilleryUnitsArray')",
"('Cavalry','ConfederateALCavalryUnitsArray')",
"('Infantry','ConfederateALInfantryUnitsArray')"
);

	// ConfederateALArtilleryUnitsArray stores the values of the artillery units engaged on the Confederate side, from "Alabama."  When the user selects "Confederate", "Alabama" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateALArtilleryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Gages Alabama Battery','results.asp?varCWUNIT=CAL0002BAL*&Submit=Submit')"
	);

	// ConfederateALCavalryUnitsArray stores the values of the cavalry units engaged on the Confederate side, from "Alabama."  When the user selects "Confederate", "Alabama" and "Cavalry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateALCavalryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Clantons Alabama Regiment, Cavalry','results.asp?varCWUNIT=CAL0001RC&Submit=Submit')",
	"('Company Alabama Cavalry (Braggs escort)','results.asp?varCWUNIT=CALHOLLCC&Submit=Submit')"
	);
	
	// ConfederateALInfantryUnitsArray stores the values of the infantry units engaged on the Confederate side, from "Alabama."  When the user selects "Confederate", "Alabama" and "Infantry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateALInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('(Cliftons) 4th Alabama Battalion, Infantry','results.asp?varCWUNIT=CAL0055RI&Submit=Submit')",
	"('16th Alabama Infantry','results.asp?varCWUNIT=CAL0016RI&Submit=Submit')",
	"('17th Alabama Infantry','results.asp?varCWUNIT=CAL0017RI&Submit=Submit')",
	"('18th Alabama Infantry','results.asp?varCWUNIT=CAL0018RI&Submit=Submit')",
	"('19th Alabama Infantry','results.asp?varCWUNIT=CAL0019RI&Submit=Submit')",
	"('21st Alabama Infantry','results.asp?varCWUNIT=CAL0021RI&Submit=Submit')",
	"('22nd Alabama Infantry','results.asp?varCWUNIT=CAL0022RI&Submit=Submit')",
	"('25th Alabama Infantry','results.asp?varCWUNIT=CAL0025RI&Submit=Submit')",
	"('26th Alabama Infantry','results.asp?varCWUNIT=CAL0050RI&Submit=Submit')",
	"('31st Alabama Infantry','results.asp?varCWUNIT=CAL0031RI&Submit=Submit')"
	);

// ConfederateARBranchArray stores the values of the branches engaged on the Confederate side, from Confederate States "Arkansas."  When the user selects "Confederate States" in the second drop down menu, the third menu will be populated from the information contained in this array.
var ConfederateARBranchArray = new Array("('Select a Branch','',true,true)",
"('Artillery','ConfederateARArtilleryUnitsArray')",
"('Infantry','ConfederateARInfantryUnitsArray')"
);

	// ConfederateARArtilleryUnitsArray stores the values of the artillery units engaged on the Confederate side, from "Arkansas."  When the user selects "Confederate", "Arkansas" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateARArtilleryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Calverts (Helena) Arkansas Battery (Shoups Battalion)','results.asp?varCWUNIT=CARCLARCAL&Submit=Submit')",
	"('Hubbards Arkansas Battery (Shoups Battalion)','results.asp?varCWUNIT=CARTHRACAL&Submit=Submit')",
	"('Roberts Arkansas Battery','results.asp?varCWUNIT=CARWIGGYAL&Submit=Submit')",
	"('Triggs (Austin) Arkansas Battery (Shoups Battalion)','results.asp?varCWUNIT=CAR0009Y&Submit=Submit')"
	);

	// ConfederateARInfantryUnitsArray stores the values of the infantry units engaged on the Confederate side, from "Arkansas."  When the user selects "Confederate", "Arkansas" and "Infantry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateARInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('1st Arkansas Infantry','results.asp?varCWUNIT=CAR0001RI03&Submit=Submit')",
	"('2nd Arkansas Infantry','results.asp?varCWUNIT=CAR0002RI01&Submit=Submit')",
	"('6th Arkansas Infantry','results.asp?varCWUNIT=CAR0006RI01&Submit=Submit')",
	"('7th Arkansas Infantry','results.asp?varCWUNIT=CAR0007RI&Submit=Submit')",
	"('8th Arkansas Infantry','results.asp?varCWUNIT=CAR0008RI01&Submit=Submit')",
	"('9th (14th) Arkansas (battalion), Infantry','results.asp?varCWUNIT=CAR0008RI&Submit=Submit')",
	"('9th Arkansas Infantry','results.asp?varCWUNIT=CAR0009RI&Submit=Submit')",
	"('10th Arkansas Infantry','results.asp?varCWUNIT=CAR0010RI&Submit=Submit')",
	"('13th Arkansas Infantry','results.asp?varCWUNIT=CAR0013RI&Submit=Submit')",
	"('15th Arkansas Infantry','results.asp?varCWUNIT=CAR0015RI02&Submit=Submit')"
	);

// ConfederateFLBranchArray stores the values of the branches engaged on the Confederate side, from Confederate States "Florida."  When the user selects "Confederate States" in the second drop down menu, the third menu will be populated from the information contained in this array.
var ConfederateFLBranchArray = new Array("('Select a Branch','',true,true)",
"('Infantry','ConfederateFLInfantryUnitsArray')"
);

	// ConfederateFLInfantryUnitsArray stores the values of the infantry units engaged on the Confederate side, from "Florida."  When the user selects "Confederate", "Florida" and "Infantry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateFLInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('1st Florida Battalion Infantry','results.asp?varCWUNIT=CFL0001RI&Submit=Submit')"
	);
	
// ConfederateGABranchArray stores the values of the branches engaged on the Confederate side, from Confederate States "Georgia."  When the user selects "Confederate States" in the second drop down menu, the third menu will be populated from the information contained in this array.
var ConfederateGABranchArray = new Array("('Select a Branch','',true,true)",
"('Artillery','ConfederateGAArtilleryUnitsArray')",
"('Cavalry','ConfederateGACavalryUnitsArray')"
);

	// ConfederateGAArtilleryUnitsArray stores the values of the artillery units engaged on the Confederate side, from "Georgia."  When the user selects "Confederate", "Georgia" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateGAArtilleryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Girardeys Georgia Battery','results.asp?varCWUNIT=CGAPRITCAL&Submit=Submit')"
	);

	// ConfederateGACavalryUnitsArray stores the values of the cavalry units engaged on the Confederate side, from "Georgia."  When the user selects "Confederate", "Georgia" and "Cavalry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateGACavalryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Georgia Dragoons (Averys), Cavalry','results.asp?varCWUNIT=CGA0012RC&Submit=Submit')"
	);

// ConfederateKYBranchArray stores the values of the branches engaged on the Confederate side, from Confederate States "Kentucky."  When the user selects "Confederate States" in the second drop down menu, the third menu will be populated from the information contained in this array.
var ConfederateKYBranchArray = new Array("('Select a Branch','',true,true)",
"('Artillery','ConfederateKYArtilleryUnitsArray')",
"('Cavalry','ConfederateKYCavalryUnitsArray')",
"('Infantry','ConfederateKYInfantryUnitsArray')"
);

	// ConfederateKYArtilleryUnitsArray stores the values of the artillery units engaged on the Confederate side, from "Kentucky."  When the user selects "Confederate", "Kentucky" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateKYArtilleryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Byrnes Mississippi Battery','results.asp?varCWUNIT=CKYBYRNCA&Submit=Submit')",
	"('Cobbs (Lyons) Kentucky Battery','results.asp?varCWUNIT=CKYCOBBCAL&Submit=Submit')"
	);

	// ConfederateKYCavalryUnitsArray stores the values of the cavalry units engaged on the Confederate side, from "Kentucky."  When the user selects "Confederate", "Kentucky" and "Cavalry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateKYCavalryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Morgans Squadron Kentucky Cavalry','results.asp?varCWUNIT=CKY0002RC01&Submit=Submit')",
	"('Thompsons Company Kentucky Cavalry','results.asp?varCWUNIT=CKYTHOMCC&Submit=Submit')"
	);
	
	// ConfederateKYInfantryUnitsArray stores the values of the infantry units engaged on the Confederate side, from "Kentucky."  When the user selects "Confederate", "Kentucky" and "Infantry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateKYInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('3rd Kentucky Infantry','results.asp?varCWUNIT=CKY0003RIT&Submit=Submit')",
	"('4th Kentucky Infantry','results.asp?varCWUNIT=CKY0004RIT&Submit=Submit')",
	"('5th Kentucky Infantry','results.asp?varCWUNIT=CKY0005RIT&Submit=Submit')",
	"('6th Kentucky Infantry','results.asp?varCWUNIT=CKY0006RIT&Submit=Submit')",
	"('7th Kentucky Infantry','results.asp?varCWUNIT=CKY0007RIT&Submit=Submit')"
	);
	
// ConfederateLABranchArray stores the values of the branches engaged on the Confederate side, from Confederate States "Louisiana."  When the user selects "Confederate States" in the second drop down menu, the third menu will be populated from the information contained in this array.
var ConfederateLABranchArray = new Array("('Select a Branch','',true,true)",
"('Artillery','ConfederateLAArtilleryUnitsArray')",
"('Infantry','ConfederateLAInfantryUnitsArray')"
);

	// ConfederateLAArtilleryUnitsArray stores the values of the artillery units engaged on the Confederate side, from "Louisiana."  When the user selects "Confederate", "Louisiana" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateLAArtilleryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Washington (Louisiana) Artillery, 5th Co.(Hodgsons Battery)','results.asp?varCWUNIT=CLAWASHYAL5&Submit=Submit')",
	"('Watsons Louisiana (Flying Artillery) Battery','results.asp?varCWUNIT=CLAWATSY&Submit=Submit')"
	);
	
	// ConfederateLAInfantryUnitsArray stores the values of the infantry units engaged on the Confederate side, from "Louisiana."  When the user selects "Confederate", "Louisiana" and "Infantry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateLAInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('1st Louisiana Infantry','results.asp?varCWUNIT=CLA0001RI2&Submit=Submit')",
	"('4th Louisiana Infantry','results.asp?varCWUNIT=CLA0004RI&Submit=Submit')",
	"('11th Louisiana Infantry','results.asp?varCWUNIT=CLA0011RI&Submit=Submit')",
	"('13th Louisiana Infantry','results.asp?varCWUNIT=CLA0013RI&Submit=Submit')",
	"('16th Louisiana Infantry','results.asp?varCWUNIT=CLA0016RI&Submit=Submit')",
	"('17th Louisiana Infantry','results.asp?varCWUNIT=CLA0017RI&Submit=Submit')",
	"('18th Louisiana Infantry','results.asp?varCWUNIT=CLA0018RI01&Submit=Submit')",
	"('19th Louisiana Infantry','results.asp?varCWUNIT=CLA0019RI&Submit=Submit')",
	"('20th Louisiana Infantry','results.asp?varCWUNIT=CLA0020RI&Submit=Submit')",
	"('Confederate Guards Response Battalion, [Louisiana Militia]','results.asp?varCWUNIT=CLACONFR0M&Submit=Submit')",
	"('Crescent (Louisiana) Regiment, Infantry','results.asp?varCWUNIT=CLACRESRI1&Submit=Submit')",
	"('Orleans Guard (Louisiana) Battalion, Infantry','results.asp?varCWUNIT=CLAORLER0M2&Submit=Submit')"
	);
	
// ConfederateMSBranchArray stores the values of the branches engaged on the Confederate side, from Confederate States "Mississippi."  When the user selects "Confederate States" in the second drop down menu, the third menu will be populated from the information contained in this array.
var ConfederateMSBranchArray = new Array("('Select a Branch','',true,true)",
"('Artillery','ConfederateMSArtilleryUnitsArray')",
"('Cavalry','ConfederateMSCavalryUnitsArray')",
"('Infantry','ConfederateMSInfantryUnitsArray')"
);

	// ConfederateMSArtilleryUnitsArray stores the values of the artillery units engaged on the Confederate side, from "Mississippi."  When the user selects "Confederate", "Mississippi" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateMSArtilleryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Harpers (Jefferson Mississippi) Battery','results.asp?varCWUNIT=CMSDARDCAL&Submit=Submit')",
	"('Pettus Flying Artillery or Hudsons Mississippi Battery','results.asp?varCWUNIT=CMSHOOLCAL&Submit=Submit')",
	"('Smiths Mississippi Battery','results.asp?varCWUNIT=CMSTURNCAL&Submit=Submit')",
	"('Stanfords Mississippi Battery','results.asp?varCWUNIT=CMSSTANCAL&Submit=Submit')",
	"('Vaiden or Bains Mississippi Battery','results.asp?varCWUNIT=CMS0001RALL&Submit=Submit')",
	"('Warren Light Artillery or Swetts Mississippi Battery','results.asp?varCWUNIT=CMSSWETCAL&Submit=Submit')"
	);

	// ConfederateMSCavalryUnitsArray stores the values of the cavalry units engaged on the Confederate side, from "Mississippi."  When the user selects "Confederate", "Mississippi" and "Cavalry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateMSCavalryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('1st Mississippi [Lindsays] Cavalry','results.asp?varCWUNIT=CMS0001RC&Submit=Submit')",
	"('Mississippi & Alabama Battalion [Brewers] Cavalry','results.asp?varCWUNIT=CCS0008RC02&Submit=Submit')",
	"('Wirt Adamss Mississippi Regiment Cavalry','results.asp?varCWUNIT=CCSWOOD0C&Submit=Submit')"
	);
	
	// ConfederateMSInfantryUnitsArray stores the values of the infantry units engaged on the Confederate side, from "Mississippi."  When the user selects "Confederate", "Mississippi" and "Infantry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateMSInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('3rd Mississippi Battalion, Infantry','results.asp?varCWUNIT=CMS0003BI&Submit=Submit')",
	"('5th Mississippi Infantry','results.asp?varCWUNIT=CMS0005RI&Submit=Submit')",
	"('6th Mississippi Infantry','results.asp?varCWUNIT=CMS0006RI&Submit=Submit')",
	"('7th Mississippi Infantry','results.asp?varCWUNIT=CMS0007RI&Submit=Submit')",
	"('9th Mississippi Infantry','results.asp?varCWUNIT=CMS0009RI&Submit=Submit')",
	"('10th Mississippi Infantry','results.asp?varCWUNIT=CMS0010RI&Submit=Submit')",
	"('15th Mississippi Infantry','results.asp?varCWUNIT=CMS0015RI&Submit=Submit')",
	"('22nd Mississippi Infantry','results.asp?varCWUNIT=CMS0022RI&Submit=Submit')",
	"('Blythes Mississippi Infantry','results.asp?varCWUNIT=CMSBLYTBI&Submit=Submit')"
	);

// ConfederateMOBranchArray stores the values of the branches engaged on the Confederate side, from Confederate States "Missouri."  When the user selects "Confederate States" in the second drop down menu, the third menu will be populated from the information contained in this array.
var ConfederateMOBranchArray = new Array("('Select a Branch','',true,true)",
"('Infantry','ConfederateMOInfantryUnitsArray')"
);

	// ConfederateMOInfantryUnitsArray stores the values of the infantry units engaged on the Confederate side, from "Missouri."  When the user selects "Confederate", "Missouri" and "Infantry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateMOInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('1st Missouri Infantry','results.asp?varCWUNIT=CMO0001RI01&Submit=Submit')"
	);
	
// ConfederateTNBranchArray stores the values of the branches engaged on the Confederate side, from Confederate States "Tennessee."  When the user selects "Confederate States" in the second drop down menu, the third menu will be populated from the information contained in this array.
var ConfederateTNBranchArray = new Array("('Select a Branch','',true,true)",
"('Artillery','ConfederateTNArtilleryUnitsArray')",
"('Cavalry','ConfederateTNCavalryUnitsArray')",
"('Infantry','ConfederateTNInfantryUnitsArray')"
);

	// ConfederateTNArtilleryUnitsArray stores the values of the artillery units engaged on the Confederate side, from "Tennessee."  When the user selects "Confederate", "Tennessee" and "Artillery" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateTNArtilleryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Bankheads Tennessee Battery','results.asp?varCWUNIT=CTNSCOTCAL&Submit=Submit')",
	"('McClungs Tennessee Battery','results.asp?varCWUNIT=CTNMCCLCAL&Submit=Submit')",
	"('Pillow Flying Artillery or Millers Tennessee Battery','results.asp?varCWUNIT=CTN0001RAH*&Submit=Submit')",
	"('Polks Tennessee Battery','results.asp?varCWUNIT=CTNPOLKCAL&Submit=Submit')",
	"('Rutledges Tennessee Battery','results.asp?varCWUNIT=CTNRUTLCAL&Submit=Submit')"
	);

	// ConfederateTNCavalryUnitsArray stores the values of the cavalry units engaged on the Confederate side, from "Tennessee."  When the user selects "Confederate", "Tennessee" and "Cavalry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateTNCavalryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Forrests Regiment Tennessee Cavalry','results.asp?varCWUNIT=CTN0003RC&Submit=Submit')"
	);
	
	// ConfederateTNInfantryUnitsArray stores the values of the infantry units engaged on the Confederate side, from "Tennessee."  When the user selects "Confederate", "Tennessee" and "Infantry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateTNInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('1st Tennessee Infantry (Battalion)','results.asp?varCWUNIT=CTN0001RI01&Submit=Submit')",
	"('2nd Tennessee Infantry [Bates]','results.asp?varCWUNIT=CTN0002RI01&Submit=Submit')",
	"('2nd Tennessee Infantry (Walkers)','results.asp?varCWUNIT=CTN0002RI02&Submit=Submit')",
	"('4th Tennessee Infantry','results.asp?varCWUNIT=CTN0004RI01&Submit=Submit')",
	"('5th (35th) Tennessee Infantry [Hills]','results.asp?varCWUNIT=CTN0035RI&Submit=Submit')",
	"('5th Tennessee Infantry [Venables]','results.asp?varCWUNIT=CTN0005RI&Submit=Submit')",
	"('6th Tennessee Infantry','results.asp?varCWUNIT=CTN0006RI01&Submit=Submit')",
	"('9th Tennessee Infantry','results.asp?varCWUNIT=CTN0009RI&Submit=Submit')",
	"('12th Tennessee Infantry','results.asp?varCWUNIT=CTN0012RI01&Submit=Submit')",
	"('13th Tennessee Infantry','results.asp?varCWUNIT=CTN0013RI&Submit=Submit')",
	"('15th Tennessee Infantry','results.asp?varCWUNIT=CTN0015RI&Submit=Submit')",
	"('19th Tennessee Infantry','results.asp?varCWUNIT=CTN0019RI&Submit=Submit')",
	"('20th Tennessee Infantry','results.asp?varCWUNIT=CTN0020RI&Submit=Submit')",
	"('22nd Tennessee Infantry','results.asp?varCWUNIT=CTN0020RI&Submit=Submit')",
	"('23rd Tennessee Infantry','results.asp?varCWUNIT=CTN0023RI&Submit=Submit')",
	"('24th Tennessee Infantry','results.asp?varCWUNIT=CTN0024RI&Submit=Submit')",
	"('27th Tennessee Infantry','results.asp?varCWUNIT=CTN0027RI&Submit=Submit')",
	"('28th Tennessee Infantry','results.asp?varCWUNIT=CTN0028RI01&Submit=Submit')",
	"('33rd Tennessee Infantry','results.asp?varCWUNIT=CTN0033RI&Submit=Submit')",
	"('38th Tennessee Infantry','results.asp?varCWUNIT=CTN0038RI&Submit=Submit')",
	"('44th Tennessee Infantry','results.asp?varCWUNIT=CTN0044RI&Submit=Submit')",
	"('45th Tennessee Infantry','results.asp?varCWUNIT=CTN0045RI&Submit=Submit')",
	"('47th Tennessee Infantry','results.asp?varCWUNIT=CTN0047RI&Submit=Submit')",
	"('52nd Tennessee Infantry','results.asp?varCWUNIT=CTN0052RI&Submit=Submit')",
	"('55th Tennessee Infantry','results.asp?varCWUNIT=CTN0055RI02&Submit=Submit')",
	"('154th Tennessee (senior) Infantry  Regiment','results.asp?varCWUNIT=CTN0013RI154&Submit=Submit')",
	"('Crews Tennessee Infantry Battalion','results.asp?varCWUNIT=CTN0045RI02&Submit=Submit')"
	);		
	
// ConfederateTXBranchArray stores the values of the branches engaged on the Confederate side, from Confederate States "Texas."  When the user selects "Confederate States" in the second drop down menu, the third menu will be populated from the information contained in this array.
var ConfederateTXBranchArray = new Array("('Select a Branch','',true,true)",
"('Cavalry','ConfederateTXCavalryUnitsArray')",
"('Infantry','ConfederateTXInfantryUnitsArray')"
);

	// ConfederateTXCavalryUnitsArray stores the values of the cavalry units engaged on the Confederate side, from "Texas."  When the user selects "Confederate", "Texas" and "Cavalry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateTXCavalryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('Whartons Texas (Rangers) Regiment Cavalry','results.asp?varCWUNIT=CTX0008RC&Submit=Submit')"
	);
	
	// ConfederateTXInfantryUnitsArray stores the values of the infantry units engaged on the Confederate side, from "Texas."  When the user selects "Confederate", "Texas" and "Infantry" from the first three drop down menus the fourth menu will be populated from the information in this array.  If the user clicks on any of the units from this menu they will be taken to a search results page with monuments/tablets pertaining to that unit.
	var ConfederateTXInfantryUnitsArray = new Array("('Select a Unit','',true,true)",
	"('2nd Texas Infantry','results.asp?varCWUNIT=CTX0002RI&Submit=Submit')",
	"('9th Texas Infantry','results.asp?varCWUNIT=CTX0009RI&Submit=Submit')"
	);



function populateData (inForm, selected){
   var selectedArray = eval(selected + "Array");
   while (selectedArray.length < inForm.data.options.length)
   {
     inForm.data.options[(inForm.data.options.length -1)] = null;
   }
   for (var i=0; i < selectedArray.length; i++)
   {
     eval ("inForm.data.options[i]=" + "new Option" + selectedArray[i]);
   }
   if (inForm.army.options[0].value == '')
   {
     inForm.army.options[0] = null;
	 if (navigator.appName == 'Netscape')
	 {
	   if (parseInt(navigator.appVersion) < 5) 
	   {
	     window.history.go(0);
	   }
	 }
   }
}

function populateData2 (inForm, selected){
   var selectedArray = eval(selected);
   while (selectedArray.length < inForm.data2.options.length)
   {
     inForm.data2.options[(inForm.data2.options.length -1)] = null;
   }
   for (var i=0; i < selectedArray.length; i++)
   {
     eval ("inForm.data2.options[i]=" + "new Option" + selectedArray[i]);
   }
   if (inForm.data.options[0].value == '')
   {
     inForm.data.options[0] = null;
	 if (navigator.appName == 'Netscape')
	 {
	   if (parseInt(navigator.appVersion) < 5) 
	   {
	     window.history.go(0);
	   }
	 }
   }
}

function populateData3 (inForm, selected){
   var selectedArray2 = eval(selected);
   while (selectedArray2.length < inForm.data3.options.length)
   {
     inForm.data3.options[(inForm.data3.options.length -1)] = null;
   }
   for (var i=0; i < selectedArray2.length; i++)
   {
     eval ("inForm.data3.options[i]=" + "new Option" + selectedArray2[i]);
   }
   if (inForm.data2.options[0].value == '')
   {
     inForm.data2.options[0] = null;
	 if (navigator.appName == 'Netscape')
	 {
	   if (parseInt(navigator.appVersion) < 5) 
	   {
	     window.history.go(0);
	   }
	 }
   }
}

function navJump()
{
  document.location.href = document.extranet.data3[document.extranet.data3.selectedIndex].value
}

// End -->
