			function popWin(strURL)
		{
			window.open(strURL,"newWin");
		}
		
		function linkto_externalSite(strURL)
{
	if(confirm("Usted está saliendo de First Connecticut Credit Union.\n\nEl sitio de internet al que usted esta visitando no es operado por la Únion de Crédito del First Connecticut.\n\nNo somos responsables del contenido o información encontrada en este sitio de internet externo.\n\nFirst Connecticut no es responsable por, ni lo representamos a usted o a este sitio de internet externo si entran en cualquier acuerdo.\n\nLas pólizas de Seguridad y Privacidad pueden que sean diferentes que esas practicadas por la cooperativa."))
	
	{
		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, 12, 0, TransMenu.reference.bottomLeft);
		var ls = new TransMenuSet(TransMenu.direction.down, 70, 0, 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("Join"));
		menu1.addItem("Sobre Nosotros", "sp_AboutUs.asp");
		menu1.addItem("Beneficios Adicionales", "sp_AdditionalBenefits.asp");
		menu1.addItem("Solicitud de Membresía", "https://www.creditunionwebsites.com/V004U30PAN/firstconnecticut/Form_sp_MemberApp.asp");
		menu1.addItem("Promociones Actuales", "sp_Promotions.asp");
		menu1.addItem("Contáctanos", "sp_ContactUs.asp");
		
		var submenu1 = menu1.addMenu(menu1.items[0]);
			submenu1.addItem("Horario y días feriados", "sp_HoursHolidays.asp");
			submenu1.addItem("Direcciones", "sp_Directions.asp");
			submenu1.addItem("Política de Privacidad", "sp_PrivacyStatement.asp");
						
		
		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("Borrow"));
		menu2.addItem("Tasas", "sp_LoanRates.asp");
		menu2.addItem("Productos de Préstamos", "sp_LoanProducts.asp");
		menu2.addItem("Hipoteca", "sp_FirstMortgages.asp");
		menu2.addItem("Solicite un Préstamo", "javascript:popWin('https://www.myinterlend.com/CRINetWebWC/Gateway.aspx?mid=PSG&iid=00034590&tvPurposeString=LVN')");
		menu2.addItem("Calculadoras", "sp_Calculators.asp");
		menu2.addItem("Promociones Actuales", "sp_Promotions.asp");
		menu2.addItem("Reporte de Credito Gratis", "javascript:linkto_externalSite('https://www.annualcreditreport.com/cra/index.jsp')");

			
			
					
		//==================================================================================================

		//==================================================================================================
		
		
		var menu3 = ms.addMenu(document.getElementById("Save"));
		menu3.addItem("Tasas", "sp_SavingsRates.asp");
		menu3.addItem("Productos", "sp_ShareProducts.asp");
		menu3.addItem("Promociones Actuales", "sp_Promotions.asp");
		menu3.addItem("Ordéne Cheques", "javascript:linkto_externalSite('https://www.deluxe-check-order.com/ReorderHome.jsp')");
		
			
		
		//==================================================================================================
		
		
		var menu4 = ls.addMenu(document.getElementById("VisaCard"));
		menu4.addItem("&bull; Descripción de Tarjeta de Crédito Visa", "sp_VisaCreditCard.asp");
		menu4.addItem("&bull; Acceso a Su Cuenta", "javascript:linkto_externalSite('https://www.ezcardinfo.com')")
		menu4.addItem("&bull; Programa de Ganancia ScoreCard", "javascript:linkto_externalSite('https://www.scorecardrewards.com/general_logon.asp')")
		menu4.addItem("&bull; Solicite Ahora", "javascript:popWin('https://www.myinterlend.com/CRINetWebWC/Gateway.aspx?mid=PSG&iid=00034590&tvPurposeString=LVN')");
		
			
		//==================================================================================================
		
		
		var menu5 = ls.addMenu(document.getElementById("ATMAccess"));
		menu5.addItem("&bull; Descripción de Acceso ATM", "sp_ATMAccess.asp");
		menu5.addItem("&bull; Red de Allpoint", "javascript:linkto_externalSite('http://www.allpointnetwork.com')");
		menu5.addItem("&bull; ATM en el local", "sp_ATMAccess.asp#OnSite");
		menu5.addItem("&bull; Solicite Ahora", "https://www.creditunionwebsites.com/V004U30PAN/firstconnecticut/Form_sp_CardApp.asp");
		
			
		//==================================================================================================
		
		
		var menu6 = ls.addMenu(document.getElementById("DebitCard"));
		menu6.addItem("&bull; Descripción de la Tarjeta de Débito", "sp_DebitCard.asp");
		menu6.addItem("&bull; Red de Allpoint", "javascript:linkto_externalSite('http://www.allpointnetwork.com')");
		menu6.addItem("&bull; Solicite Ahora", "https://www.creditunionwebsites.com/V004U30PAN/firstconnecticut/Form_sp_CardApp.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();
	}

