function openDirEnroll(form) { 
	var newIndex = form.enrolldrop.selectedIndex; 
	var gotourl;
	if (newIndex == 0) { 
		alert("Please select a health insurance product."); 
	} else { 
		gotourl = form.enrolldrop.options[newIndex].value; 
		// newWin = window.location.assign(gotourl); 
		window.open(gotourl);
	} 
}
function openDirMember(form) { 
	var newIndex = form.memberdrop.selectedIndex; 
	var gotourl;
	if (newIndex == 0) { 
		alert("Please select a health insurance product."); 
	} else { 
		gotourl = form.memberdrop.options[newIndex].value; 
		// newWin = window.location.assign(gotourl); 
		window.open(gotourl);
	} 
}
function openDirAdmin(form) { 
	var newIndex = form.admindrop.selectedIndex; 
	var gotourl;
	if (newIndex == 0) { 
		alert("Please select a health insurance product."); 
	} else { 
		gotourl = form.admindrop.options[newIndex].value; 
		// newWin = window.location.assign(gotourl); 
		window.open(gotourl);
	} 
}



