function doLearnMore()
{
	var frm = document.forms.frmLearn;
	
	var pageLink = frm.learnMorePage.options[frm.learnMorePage.options.selectedIndex].value;

	if (pageLink != "")
	{
		window.location = pageLink;
	}
}


		
function externalLinkAlert(sURL){
	if(confirm('By clicking this link you will be leaving the Work Life NAB site to go to\na third party provider website.\n\nNAB is not responsible for the content of this site or liable for any loss\nor damage resulting from the use of this site.')){
		window.open(sURL);
	}
}
