	var aName = new Array();
	var aDesc = new Array();
	var aLoc  = new Array();
	var tImage = new Array();
	var extra = new Array();
	
	aName[0] = "Engine 1";
	aDesc[0] = "2006 HME 1500gpm, 750g tank";
	extra[0] = "";
	aLoc[0] = "Center Station Annex";
	tImage[0] = "apparatus/NewE1/NewE1.png";
	
	aName[1] = "Engine 2";
	aDesc[1] = "1995 Spartan/E-One 1500gpm, 750g tank";
	extra[1] = "";
	aLoc[1] = "West Townsend Station";
	tImage[1] = "apparatus/Engine2.jpg";
	
	aName[2] = "Engine 3";
	aDesc[2] = "2002 E-One Typhoon 1500gpm, 750g tank";
	extra[2] = "";
	aLoc[2] = "Townsend Harbor Station";
	tImage[2] = "apparatus/Engine3.jpg";

	aName[3] = "Engine 4";
	aDesc[3] = "1978 Mack 1000gpm, 750g tank";
	extra[3] = "Formerly Rescue 1 1997-2002, Engine 3 1978-1997";
	aLoc[3] = "Center Station Annex";
	tImage[3] = "apparatus/Engine4.jpg";
	
	aName[4] = "Ladder 1";
	aDesc[4] = "1985 Seagrave 100-foot Rear Mount Aerial";
	extra[4] = "";
	aLoc[4] = "Center Station Annex";
	tImage[4] = "apparatus/Ladder1.jpg";
	
	aName[5] = "Rescue 1";
	aDesc[5] = "1981 Ford/E-One 1000gpm, 750g tank";
	extra[5] = "Formerly Engine 3 1997-2002, Town of Walpole, MA Engine 1981-1997";
	aLoc[5] = "Center Station Annex";
	tImage[5] = "apparatus/TownsendR1.jpg";
	
	aName[6] = "Rescue 2";
	aDesc[6] = "2000 Ford/Horton E350";
	extra[6] = "";
	aLoc[6] = "Center Station";
	tImage[6] = "apparatus/TownsendA48.jpg";
		
	aName[7] = "Rescue 3";
	aDesc[7] = "2005 Ford/LifeLine E450";
	extra[7] = "";
	aLoc[7] = "Center Station";
	tImage[7] = "apparatus/TownsendA49.jpg";
	
	aName[8] = "Medic 1";
	aDesc[8] = "2009 Ford Expedition";
	extra[8] ="";
	aLoc[8] = "Headquarters";
	tImage[8] = "apparatus/TownsendNewM1.jpg";
	
	aName[9] = "Tanker 1";
	aDesc[9] = "1986 GMC/4 Guys 300gpm PTO, 2500g tank";
	extra[9] = "";
	aLoc[9] = "Townsend Harbor Station";
	tImage[9] = "apparatus/Tanker1.jpg";
	
	aName[10] = "Forestry 1";
	aDesc[10] = "1995 Ford F350 250gpm, 250g tank";
	extra[10] = "";
	aLoc[10] = "Center Station Annex";
	tImage[10] = "apparatus/Forestry1.jpg";
	
	aName[11] = "Forestry 2";
	aDesc[11] = "1971 Kaiser Jeep 300gpm, 500g tank";
	extra[11] = "";
	aLoc[11] = "West Townsend Station";
	tImage[11] = "apparatus/Forestry2.jpg";
	
	aName[12] = "Chief's Car";
	aDesc[12] = "2003 Ford Expedition";
	extra[12] = "Ex Medic-1";
	aLoc[12] = "Headquarters";
	tImage[12] = "apparatus/TownsendM1.jpg";
	
	aName[13] = "Fire Alarm Truck";
	aDesc[13] = "1999 Ford F350";
	extra[13] = "";
	aLoc[13] = "Townsend Harbor Station";
	tImage[13] = "apparatus/Truck10.jpg";
	
	aName[14] = "Squad 1";
	aDesc[14] = "2006 Ford F350 Utility Body";
	extra[14] = "";
	aLoc[14] = "Townsend Harbor Station";
	tImage[14] = "apparatus/Squad1.jpg";
	
function makeDescWindow () {
	popWindow = window.open("","","height=600,width=800,scrollbars=yes");
}

function showDescWindow(myCode) {
	if (popWindow.closed) {
		makeDescWindow()
	}

	popWindow.focus();
	
	popWindow.document.write("<html><head><title>Townsend Fire-EMS Department</title>");
	popWindow.document.write("<link rel=STYLESHEET href='http://townsendfire-ems.org/tfed3.css' type='text/css'></head>");
	popWindow.document.write("<body><strong><font color=gold>Apparatus Profile for " + aName[myCode] + "</font></strong>");

	popWindow.document.write("<p><strong><font color=gold>Vehicle:</font></strong> "+ aName[myCode] +"<br />");
	popWindow.document.write("<strong><font color=gold>Vehicle Description:</font></strong> "+ aDesc[myCode] +"</p>");
	  popWindow.document.write("<p><strong><font color=gold>Additional Information:</font></strong> "+ extra[myCode] +"</p>");
	popWindow.document.write("<strong><font color=gold>Assigned Location:</font></strong> "+ aLoc[myCode] +"<br />");
	popWindow.document.write("<br /><img src='/images/"+ tImage[myCode] +"'>");
	popWindow.document.write("<form name='toastWindow'><p><input type='button' value='Close Window' onClick='self.close()'></p></form>");
	popWindow.document.write("</body></html>");

}

function showDesc(inCode) {
	makeDescWindow();
	showDescWindow(inCode);
}
