			function popWin(strURL)
		{
			window.open(strURL,"newWin");
		}
		
		function linkto_externalSite(strURL)
{
	if(confirm("You are leaving the NuVista FCU Website.\n\nThe website you are linking to is not operated by NuVista FCU.\n\nWe are not responsible for any content or information posted to this external web site.\n\NuVista FCU 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("About NuVista", "AboutMFCU.asp");
		menu1.addItem("Become a Member", "Join.asp");
		menu1.addItem("Online Newsletter", "Newsletter.asp");
		menu1.addItem("Privacy Policy", "Privacy.asp");
		menu1.addItem("Meet the Staff", "Staff.asp");

		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("ProdServ"));
		menu2.addItem("Savings & Checking", "Savings.asp");
		menu2.addItem("Business Accounts", "BizAccounts.asp");
		menu2.addItem("Youth Accounts", "YouthAccounts.asp");
		menu2.addItem("Loans", "Loans.asp");
		menu2.addItem("Home Loans / Mortgages", "Mortgages.asp");
		menu2.addItem("Investments & Insurance", "InvestInsurance.asp");
		menu2.addItem("Convenience Services", "Convenience.asp");
		menu2.addItem("My NuVista Visa", "MyVisa.asp");
		menu2.addItem("Promotions", "Promotions.asp");
		menu2.addItem("NuVista Scholarship", "Scholarship.asp");
		
			var submenu2 = menu2.addMenu(menu2.items[0]);
			submenu2.addItem("Overview of Accounts", "Savings.asp");
			submenu2.addItem("Share Accounts (Savings)", "Savings_Share.asp");
			submenu2.addItem("Share Draft Accounts (Checking)", "Savings_ShareDraft.asp");
			submenu2.addItem("Share Certificates", "Savings_ShareCerts.asp");
			submenu2.addItem("Individual Retirement Accounts (IRA)", "Savings_IRA.asp");
			submenu2.addItem("Holiday Savings Club", "Savings_Holiday.asp");
			submenu2.addItem("Savings/Deposit Rates", "DepositRates.asp");
			
			var submenu2 = menu2.addMenu(menu2.items[2]);
			submenu2.addItem("The Lucky Penny", "Youth_LuckyPenny.asp");
			submenu2.addItem("Sports Saver", "Youth_Sports.asp");
			submenu2.addItem("Varsity Account", "Youth_Varsity.asp");
		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("OnlineServ"));
		menu3.addItem("Online Banking", "CUHome.asp");
		menu3.addItem("E-Statements", "EStatements.asp");
		menu3.addItem("Bill Pay", "EZPay.asp");
		menu3.addItem("Convenience Services", "Convenience.asp");
		menu3.addItem("My NuVista Visa", "MyVisa.asp");
		menu3.addItem("Apply for Membership", "MemberApp01.asp");


		//==================================================================================================

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("Rates"));
		menu4.addItem("Loan Rates", "LoanRates.asp");
		menu4.addItem("Deposit Rates", "DepositRates.asp");
		menu4.addItem("Calculators", "Calcs.asp");
		menu4.addItem("Personal Banking Fees", "PersonalFees.asp");
		menu4.addItem("Business Account Fees", "BusinessFees.asp");


		//==================================================================================================

		//==================================================================================================
		var menu5 = ms.addMenu(document.getElementById("ResourceCenter"));
		menu5.addItem("Community Involvement", "CommInvolve.asp");
		menu5.addItem("Member Involvement", "MemberInvolve.asp");
		menu5.addItem("Forms & Disclosure", "FormsDisc.asp");
		menu5.addItem("Fraud Alerts", "FraudAlerts.asp");
		menu5.addItem("Digital Defense", "DigitalDefense.asp");
		menu5.addItem("Seminars", "Seminars.asp");
		menu5.addItem("Manage Debt / Improve Credit", "DebtCredit.asp");
		menu5.addItem("Car Dealership Partners", "Vehicles.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();
	}