			function popWin(strURL)
		{
			window.open(strURL,"newWin");
		}
		
		function linkto_externalSite(strURL)
{
	if(confirm("You are leaving the First New England Federal Credit Union Website.\n\nThe website you are linking to is not operated by First New England Federal Credit Union.\n\nWe are not responsible for any content or information posted to this external web site.\n\nFirst New England Federal Credit Union is not responsible for, nor do we represent you or the External web site if you enter into any agreements.\n\nPrivacy and Security policies may differ between our web site and this external site."))
	{
		window.open(strURL,"","");
	}
}
	
	// set up drop downs anywhere in the body of the page. I think the bottom of the page is better.. 
	// but you can experiment with effect on loadtime.
	if (TransMenu.isSupported()) {

		//==================================================================================================
		// create a set of dropdowns
		//==================================================================================================
		// the first param should always be down, as it is here
		//
		// The second and third param are the top and left offset positions of the menus from their actuators
		// respectively. To make a menu appear a little to the left and bottom of an actuator, you could use
		// something like -5, 5
		//
		// The last parameter can be .topLeft, .bottomLeft, .topRight, or .bottomRight to inidicate the corner
		// of the actuator from which to measure the offset positions above. Here we are saying we want the 
		// menu to appear directly below the bottom left corner of the actuator
		//==================================================================================================
		var ms = new TransMenuSet(TransMenu.direction.down, 0, -1, TransMenu.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================

		var menu1 = ms.addMenu(document.getElementById("About"));
		menu1.addItem("Who We Are", "Who.asp");
		menu1.addItem("Who Can Join", "JoinWho.asp");
		menu1.addItem("Newsletters", "Newsletter.asp");
		menu1.addItem("Careers", "Careers.asp");
		menu1.addItem("Notices & Disclosures", "Disclosures.asp");
		menu1.addItem("Privacy Policy", "Privacy.asp");
		

		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("ProdServ"));
		menu2.addItem("Savings & Investments", "SavingsChecking.asp");
		menu2.addItem("Checking Accounts", "Checking.asp");
		menu2.addItem("Relationship Accounts", "RelationshipAccount.asp");
		menu2.addItem("Youth Program", "YouthProgram.asp");
		menu2.addItem("Loans", "Loans.asp");
		menu2.addItem("Credit Cards", "CCInfo.asp");
		menu2.addItem("Mortgages", "MortgageCenter.asp");
		menu2.addItem("Financial Planning", "FinancialServices.asp");

			var submenu2 = menu2.addMenu(menu2.items[0]);
			submenu2.addItem("Savings & Club Accounts", "SavingsClubs.asp");
			submenu2.addItem("Money Maximizer", "MoneyMaximizer.asp");
			submenu2.addItem("Certificates", "Certificates.asp");
			submenu2.addItem("IRAs", "IRAs.asp");

			var submenu2 = menu2.addMenu(menu2.items[4]);
			submenu2.addItem("Vehicle Loans", "VehicleLoans.asp");
			submenu2.addItem("Other Loans", "OtherLoans.asp");
			submenu2.addItem("Student Loans", "StudentLoans.asp");
			submenu2.addItem("Home Equity Loans", "HELOC.asp");
			submenu2.addItem("Skip A Payment", "SkipPay.asp");

			
		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("OnlineServ"));
		menu3.addItem("Applications & Forms", "Apps.asp");
		menu3.addItem("eBranch", "eBranch.asp")
		menu3.addItem("24 Hour Lending Center", "24HourLending.asp");
		menu3.addItem("Convenience Services", "ConvServices.asp");
		menu3.addItem("Electronic Security", "ElectronicSecurity.asp");
		
		var submenu3 = menu3.addMenu(menu3.items[1]);
			submenu3.addItem("Homebanking Login", "javascript:popWin('https://hb.firstnewengland.org/cgi-bin/mcw000.cgi?MCWSTART')");
			submenu3.addItem("Homebanking Sign Up", "https://www.creditunionwebsites.com/V009U40FUQ/fnefcu/Form_BPEnrollment.asp");
			
			
		var submenu3 = menu3.addMenu(menu3.items[3]);
			submenu3.addItem("CALL-24", "CALL24.asp");
			submenu3.addItem("Direct Deposit & Payroll Deduction", "DirectDeposit.asp");
			submenu3.addItem("ATM Access", "ATMAccess.asp");
			submenu3.addItem("ATM/Debit Card", "DebitCards.asp");
			submenu3.addItem("Prepaid Debit Card", "DebitCardPrepaid.asp");
			submenu3.addItem("Foreign Currency", "ForeignCurrency.asp");
			submenu3.addItem("Shared Branching", "SharedBranching.asp");
			submenu3.addItem("eNews", "Newsletter.asp");

		//==================================================================================================

		//==================================================================================================
		//var menu4 = ms.addMenu(document.getElementById("LifeEvents"));
		//menu4.addItem("New Baby", "NewBaby.asp");
		//menu4.addItem("Going to College", "College.asp");
		//menu4.addItem("Marriage", "Marriage.asp");
		//menu4.addItem("Career Related", "CareerRelated.asp");
		//menu4.addItem("Life’s Challenges", "LifesChallenges.asp");
		//menu4.addItem("Inheritances", "Inheritances.asp");
		//menu4.addItem("Retirement", "Retirement.asp");

		//==================================================================================================

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("Rates"));
		menu4.addItem("Savings & Investment Rates", "SavingsRates.asp");
		menu4.addItem("Loan & Mortgage Rates", "LoanRates.asp");
		menu4.addItem("Fee Schedule", "FeeSchedule.asp");
		menu4.addItem("Calculators", "Calcs.asp");

		//==================================================================================================

		//==================================================================================================
		//var menu6 = ms.addMenu(document.getElementById("Contact"));
		//menu6.addItem("Contact Us", "Contact.asp");
		//menu6.addItem("Locations & Hours", "Locations.asp");
		//menu6.addItem("Member Comments", "Feedback.asp");

		
		//==================================================================================================
		// write drop downs into page
		//==================================================================================================
		// this method writes all the HTML for the menus into the page with document.write(). It must be
		// called within the body of the HTML page.
		//==================================================================================================
		TransMenu.renderAll();
	}
