
//quicklink launch pad
function go1(){
	var disclaimer = "When you choose this link, you are leaving fepblue.org and going to a new Web site.\nAll content on this new site is the responsibility of the new site's owner, including\nprotection of your privacy which is governed by the privacy policy of that site.\nPlease review the terms of use and privacy policies of the new site you will be visiting.";
	var url = document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value;
	var ext = "";
	if (url != "none") {
		if (url.match("https://custserv")){
			//redir(url);

			if (confirm(disclaimer)){
			
				// google tracker code
				spliturl = url.replace(/https/i, "");
				spliturl = spliturl.replace(/http/i, "");
				spliturl = spliturl.replace("://", "");
				spliturl = spliturl.replace(/www2./i, "");
				spliturl = spliturl.replace(/www./i, "");
				trackurl = "/outgoing/" + spliturl; 
				pageTracker._trackPageview(trackurl);
			
			 	//popup window
				ext = window.open(url);

				//if popup window is blocked -> go directly to page
				if ( ext == null ) {
					window.location = 'https://custserv.fepblue.org/fepesvc/login.do';
				}
				else { 
					ext.location = 'https://custserv.fepblue.org/fepesvc/login.do';
				}
			}
		}
		else if (url.match("https://fepha")){
			if (confirm(disclaimer)){
			
				// google tracker code
				spliturl = url.replace(/https/i, "");
				spliturl = spliturl.replace(/http/i, "");
				spliturl = spliturl.replace("://", "");
				spliturl = spliturl.replace(/www2./i, "");
				spliturl = spliturl.replace(/www./i, "");
				trackurl = "/outgoing/" + spliturl; 
				pageTracker._trackPageview(trackurl);
			
				//popup window
				ext = window.open(url);
				//if popup window is blocked -> go directly to page
				if ( ext == null ) {
					window.location = 'https://fepha.careenhance.com/portal/site/fepha';
				}
				else { 
					ext.location = 'https://fepha.careenhance.com/portal/site/fepha';
				}
			}
		}
		else {
			location = url;
		}
	}
}

//popup disclaimer
function redir(url){
	if (confirm("When you choose this link, you are leaving fepblue.org and going to a new Web site.\nAll content on this new site is the responsibility of the new site's owner, including\nprotection of your privacy which is governed by the privacy policy of that site.\nPlease review the terms of use and privacy policies of the new site you will be visiting.")){
		
		// google tracker code
		spliturl = url.replace(/https/i, "");
		spliturl = spliturl.replace(/http/i, "");
		spliturl = spliturl.replace("://", "");
		spliturl = spliturl.replace(/www2./i, "");
		spliturl = spliturl.replace(/www./i, "");
		trackurl = "/outgoing/" + spliturl; 
		pageTracker._trackPageview(trackurl);
		
		window.open(url);
	}
}

