			function popWin(strURL)
		{
			window.open(strURL,"newWin");
		}
		
		function linkto_externalSite(strURL)
{
	if(confirm("You are leaving the First Community Federal Credit Union Web site.\n\nThe Web site you are linking to is not operated by First Community Federal Credit Union.\n\nWe are not responsible for any content or information posted to this external Web site.\n\nFirst Community 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, 10, -2, 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("A Note from Your CEO", "Note.asp");
		menu1.addItem("Why a Credit Union", "WhyCU.asp");
		menu1.addItem("Becoming a Member", "BecomeMember.asp");
		menu1.addItem("Recent Newsletters", "Newsletters.asp");
		menu1.addItem("Commitment to Community", "Community.asp");
		menu1.addItem("Member Discounts", "Discounts.asp");
		menu1.addItem("Your Board of Directors", "Board.asp");
		menu1.addItem("Employment Opportunities", "Employment.asp");
		menu1.addItem("Important Disclosures", "Disclosures.asp");
		menu1.addItem("Branch/ATM Locations & Hours", "LocHours.asp");
		

		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("Online"));
		menu2.addItem("Online Banking & Bill Pay", "OnlineBanking.asp");
		menu2.addItem("Applications & Forms", "Apps.asp");
		menu2.addItem("Credit Card Access", "VisaAccess.asp");
		menu2.addItem("Purchase Visa Gift Cards", "GiftCards.asp");
		menu2.addItem("Reorder Checks", "ReorderChecks.asp");
		menu2.addItem("Financial Calculators", "Calcs.asp");
		menu2.addItem("New Member Survey/Information Request", "https://www.creditunionwebsites.com/V001U06DAX/1stcomm/OnlineSurvey.asp");


		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("Loan"));
		menu3.addItem("Auto Loans", "AutoLoans.asp");
		menu3.addItem("Personal Loans", "PersonalLoans.asp");
		menu3.addItem("Visa&reg; Platinum Credit Card", "VisaCreditCard.asp");
		menu3.addItem("Mortgage & Home Equity Loans", "Mortgage.asp");
		menu3.addItem("Payment Protection Services", "PaymentProt.asp");
		menu3.addItem("First Time Borrower's Program", "Borrowers.asp");
		
		
		//==================================================================================================

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("Savings"));
		menu4.addItem("Savings & Certificates", "SavCert.asp");
		menu4.addItem("Savings Bonds", "SavingsBonds.asp");
		menu4.addItem("Certificates of Deposit & IRAs", "CD.asp");
		menu4.addItem("Investment Services", "Investment.asp");
		menu4.addItem("Personal Checking", "PersonalChecking.asp");
		menu4.addItem("ATM/MasterCard Check Card", "MasterCard.asp");
		menu4.addItem("Direct Deposit & E-Payments", "DirectDeposit.asp");
		menu4.addItem("Additional Services", "AdditionalServ.asp");
		menu4.addItem("Youth Club", "YouthClub.asp");
		menu4.addItem("1st Choice Café", "ChoiceCafe.asp");
		
		
		//==================================================================================================

		//==================================================================================================
		var menu5 = ms.addMenu(document.getElementById("Business"));
		
		menu5.addItem("Business Member Advantage Program", "BusinessMemberAdvProgram.asp");
		menu5.addItem("Business Checking", "BusinessChecking.asp");
		menu5.addItem("Business Loans & Lines of Credit", "BusinessLoans.asp");
		menu5.addItem("Business Savings & Certificate of Deposit", "BusinessSavings.asp");
		menu5.addItem("24 Hour Transaction Management", "TransactionManagement.asp");
		menu5.addItem("Merchant Card Programs", "MerchantCard.asp");
		menu5.addItem("Investment & Insurance Services", "InvestmentIns.asp");
		menu5.addItem("Employee Benefits & Direct Deposit", "EmployeeBenefits.asp");
		
		
		//==================================================================================================

		//==================================================================================================
		var menu6 = ms.addMenu(document.getElementById("Life"));
		menu6.addItem("Buying a New Car", "NewCar.asp");
		menu6.addItem("Concerned About Credit", "CreditConcern.asp");
		menu6.addItem("Budget Counseling", "Budget.asp");
		menu6.addItem("First Job", "FirstJob.asp");
		menu6.addItem("Protecting Yourself from Identity Theft", "IdentityTheft.asp");
		menu6.addItem("Getting Married", "GettingMarried.asp");
		menu6.addItem("Planning a Vacation", "Vacation.asp");
		menu6.addItem("Preparing for Retirement", "Retirement.asp");
		menu6.addItem("Off to College", "College.asp");
		menu6.addItem("Buying a Home", "BuyHome.asp");
		menu6.addItem("Teaching Kids to Save", "TeachingKids.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();
	}
