			/*
				 This function will launch a new browser window or pop-up window for any links 
				 contained within the XHTML that have titles that match the title variable.
			*/
			function launchWindow(title, name, width, height, scrollbars, resizable, left, top) {
				if (!document.getElementsByTagName) 
					return false;
				var links = document.getElementsByTagName("a");
				if (links.length < 1) 
					return false;
				for (var i = 0; i < links.length; i++) {
					var linkTitle = links[i].getAttribute("title");
					if (linkTitle == title && width != null) {			// Launches "pop-up" style windows.
						links[i].onclick = function() {
							var newPopUp = window.open(this.getAttribute("href"), name, "width=" + width + ",height=" + height + ",scrollbars=" + scrollbars + ",resizable=" + resizable + ",left=" + left + ",top=" + top);
							return false;
						}
					}
					else if (linkTitle == title && width == null) {	// Launches normal browser windows.
						links[i].onclick = function() {
							var newWindow = window.open(this.getAttribute("href"), name);
							return false;
						}
					}
				}
			}
			/*
				Set the title of the links that you want to launch new browser windows for (and 
				the names of their windows) in launchWindow() below, and call lWArgs into 
				loadFuncs() in the header of the XHTML page(s).
			*/
			function lWArgs() {
				// Use the following function call to launch normal browser windows.
				// launchWindow("Get started. Link opens a new browser window.", "applyNow");
				// launchWindow("Open Now. Link opens a new browser window.", "applyNow");
				// launchWindow("Learn more about the Business Check Card. Link opens a new browser window.", "learnMore");
				// launchWindow("Open an account now. Link opens a new browser window.", "openAccount");
				// launchWindow("Learn more about our business checking accounts. Link opens a new browser window.", "businessAccount");
				// launchWindow("Privacy and Security. Link opens a new browser window.", "privacySecurity");
				// launchWindow("Important disclosure information about terms and conditions; including rates. Link opens a new browser window.", "terms");
				// launchWindow("Visit Bank of America's homepage. Link opens a new browser window.", "bofaHome");
				// Use the following function call to launch "pop-up" style windows.
				// launchWindow("Print Coupon. Link opens a new pop-up window.", "printCoupon", 575, 275, "no", "no", 35, 161);
				launchWindow("Equal Housing Lender. Link opens a new pop-up window.", "newwin", 640, 371, "yes", "yes", 35, 161);
				// launchWindow("Rate Information. Link opens a new pop-up window.", "newwin", 640, 371, "yes", "yes", 35, 161);
			}