<!DOCTYPE html>
<html prefix="og: http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<title>The NACCHO Podcast Series</title>
	<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
	
	<meta name="apple-mobile-web-app-capable" content="yes">
	<meta name="viewport" content="initial-scale = 1.0, user-scalable = no">
	<meta name="description" content="The NACCHO Podcast series provides public health professionals with in-depth interviews featuring some of the field's top officials. Listeners can also learn the latest news from Washington, DC with our bi-weekly &quot;Podcast From Washington.&quot;">
	<meta itemprop="name" content="The NACCHO Podcast Series">
	<meta itemprop="description" content="The NACCHO Podcast series provides public health professionals with in-depth interviews featuring some of the field's top officials. Listeners can also learn the latest news from Washington, DC with our bi-weekly &quot;Podcast From Washington.&quot;">
	<meta itemprop="image" content="http://assets.libsyn.com/content/12561478">
	<meta property="og:type" content="website">
	<meta property="og:url" content="http://naccho.libsyn.com/">
	<meta property="og:title" content="The NACCHO Podcast Series">
	<meta property="og:image" content="http://assets.libsyn.com/content/12561478?height=250&amp;width=250">
	<meta property="og:image:width" content="250">
	<meta property="og:image:height" content="250">
	<meta property="og:description" content="The NACCHO Podcast series provides public health professionals with in-depth interviews featuring some of the field's top officials. Listeners can also learn the latest news from Washington, DC with our bi-weekly &quot;Podcast From Washington.&quot;">
	<meta name="twitter:site" content="@@nacchoalerts">
	<meta name="twitter:card" content="summary">
	<meta name="twitter:title" content="The NACCHO Podcast Series">
	<meta name="twitter:description" content="The NACCHO Podcast series provides public health professionals with in-depth interviews featuring some of the field's top officials. Listeners can also learn the latest news from Washington, DC with our bi-weekly &quot;Podcast From Washington.&quot;">
	<meta name="twitter:image" content="http://assets.libsyn.com/content/12561478">	
	<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
	<script type="text/javascript" src="//ajax.aspnetcdn.com/ajax/jquery.validate/1.15.0/jquery.validate.min.js"></script>
<!--	<script type="text/javascript" src="http://player.libsyn.com/jplayer/jquery.jplayer.js"></script>
	<script type="text/javascript" src="http://player.libsyn.com/jplayer/libsyn.jplayer.js"></script>
-->	<script type="text/javascript" src="http://static.libsyn.com/p/assets/platform/simplemodal/js/jquery.simplemodal.js"></script>
	<script type="text/javascript">
		function resizeLibsynShowHeader(){
			var imgHeight = 289;
			var imgWidth = 768;
			var header = $('.libsyn-show-header');
			var ratio = header.width()/imgWidth;
			var newHeight = Math.floor(ratio * imgHeight);
			$('.libsyn-show-header').height(newHeight);
			
						
			var title = $('.libsyn-show-title');
			var topPos = Math.max((newHeight/2 - title.height()/2), 50);
			
			title.css('top', topPos + 'px');
			
			while(topPos + title.height() > header.height() - 10){
				var titleFontSize = parseInt(title.css('font-size'));
			
				title.css('font-size', (titleFontSize-1) + 'px');
			}
			
					}

		(function($){
			$('.libsyn-comment-form form').validate();

			// get all premium episodes
			var show_id = '85898';
			var id_prefix = "libsyn-item-";
			var episode_ids = new Array(); // For some reason, this line was causing Firefox to become unresponsive.
			//var episode_ids = '';
			$('div.libsyn-item:has(div.libsyn-item-premium)').each(function(index){
				episode_ids.push($(this).attr('id').substring(id_prefix.length));	
			});
			
			var episodes =  (episode_ids.length > 0) ? episode_ids.join(',') : 0;
			$.ajax({
				type: 'GET',
				url: "//my.libsyn.com/auth/check-premium-episodes",
				data: {show_id: show_id, episodes: episodes}, 
				dataType: 'jsonp',
				success:function(json){
					if(typeof json.success != "undefined"){
						// hide premium promos
						$('.producer_message_premium').remove();
						$('.libsyn-item-premium').addClass('libsyn-item-free').removeClass('libsyn-item-premium');
						
													$('#premium-banner-wrapper').addClass("has-premium").find('a').html('You Have Premium Access');
							$('.libsyn-premium-notice').html('<div>This is a premium episode.</div>');
											} else {
						noPremium();
					}
				},
				error:function(xhr, textStatus, errorThrown){
					noPremium();
				}
			}); 
			
			$.fn.libsynPlayerSize = function(options){
				var settings = $.extend({
					rightMargin: 30,
					verticalMargin: 0
				}, options);
				
				var maxWidth = $(window).width();
									
				return this.each(function(){
					var playerWidth = $(this).width();
					var playerHeight = $(this).height();
					var originalWidth = $(this).data('original-width');
					var originalHeight = $(this).data('original-height');
					
					if(!originalWidth){
						originalWidth = playerWidth;
						$(this).data('original-width', originalWidth);
						originalHeight = playerHeight;
						$(this).data('original-height', originalHeight);
					}
					var aspectRatio = originalWidth/originalHeight;
					var containerMaxWidth = $(this).parent().css('maxWidth');
					
					if(containerMaxWidth && containerMaxWidth != 'none' && !isNaN(parseInt(containerMaxWidth))){
				//		maxWidth = containerMaxWidth;
					}
					
					// no players narrower than 200
					var newWidth = Math.max(Math.min(maxWidth - settings.rightMargin, originalWidth), 200);
					var newHeight = Math.round(newWidth/aspectRatio);
					
					var maxHeight = $(window).height() - settings.verticalMargin;
					
					if(newHeight > maxHeight && maxHeight * aspectRatio >= 200){
						newHeight = maxHeight;
						newWidth = Math.round(newHeight * aspectRatio);
					}
					if(newWidth == playerWidth) return;
					
					if(newHeight < 90 && originalHeight == 90) newHeight = 90;
					
					$(this).css('width', newWidth + 'px');
					if(originalHeight > 75){
						$(this).css('height', newHeight + 'px');
					}
				});
			};
		})(jQuery);
				
		$(document).ready(function(){
			
			$("#mobile_menu_drop").click(function(){
				$('.libsyn-social').toggle('fast');
			});
			
			resizeLibsynShowHeader();
			
			$("iframe[src*='html5-player']").libsynPlayerSize({rightMargin: 30, verticalMargin: 45});
			
			$('img.item-web-image')
				.css('cursor', 'pointer')
				.click(function(){
					var imgLoaded = false;
					var imgWidth = 0;
					var imgHeight = 0;
					var modalLoaded = false;
					var modalContent;
					var modalContainer;
					var newImg = new Image();
					newImg.src = $(this).data("src");
					
					var resizeModalImage = function(){
						var horizBuffer = 60;
						var vertBuffer = 60;
						var maxWidth = $(window).width() - horizBuffer;
						var maxHeight = $(window).height() - vertBuffer;
					
						var aspectRatio = imgWidth/imgHeight;
						if(imgWidth > maxWidth){
							imgWidth = maxWidth;
							imgHeight = Math.round(imgWidth / aspectRatio);
						}
						
						if(imgHeight > maxHeight){
							imgHeight = maxHeight;
							imgWidth = Math.round(imgHeight * aspectRatio);
						}
						
						// resize image
						$(modalContent).find('img').width(imgWidth).height(imgHeight);
						
						modalContainer.css('width', imgWidth + 10).css('height', 'auto');
						$(window).trigger('resize.simplemodal');
					}
					
					newImg.onload = function(){
						imgLoaded = true;
						imgWidth = $(newImg).width();
						imgHeight = $(newImg).height();
						
						if(modalLoaded){
							resizeModalImage();
						}
					};
					
					var modal = $('<div>').modal({
						opacity:50, 
						autoPosition: true, 
						overlayClose: true, 
						autoResize: false,
						onShow: function(dialog){
							modalLoaded = true;
							modalContainer = dialog.container;
							modalContent = dialog.wrap;
							modalContent.append(newImg);
							if(imgLoaded){
								resizeModalImage();
							}
							dialog.container.css('height', 'auto');
						}
					});
				});
		});
		
		$(window).resize(function(){
			$("iframe[src*='html5-player']").libsynPlayerSize({rightMargin: 30, verticalMargin: 45});
			resizeLibsynShowHeader();
		});
		
		function noPremium(){
			// remove player
			$('div.libsyn-item:has(div.libsyn-item-premium) div.libsyn-item-player').hide();
			// remove links from download links
			$('div.libsyn-item:has(div.libsyn-item-premium) div.libsyn-item-content ul li').each(function(){ 
				$(this).html($(this).text()); 
			});
		}	

		function showInfoModal(){
			$('#info_text').modal({opacity:0, position:[60,null],dataCss:{color:"#ffffff"}, overlayClose:true});
			$('#simplemodal-container').css('height', 'auto');
		}

		function showArchivesModal(){
			$('#archives_text').modal({opacity:0, autoPosition: true,containerCss:{width:"200px"},dataCss:{color:"#ffffff"}, overlayClose:true, autoResize: true});
		}
		
		function showCategoriesModal(){
			$('#categories_text').modal({opacity:0, autoPosition: true,containerCss:{width:"250px"},dataCss:{color:"#ffffff"}, overlayClose:true, autoResize: true});
		}
	</script>

	<link rel="stylesheet" href="http://static.libsyn.com/p/assets/platform/simplemodal/css/basic-3.css" />
	<!--[if IE 6]>
		<link rel="stylesheet" href="http://static.libsyn.com/p/assets/platform/simplemodal/css/basic_ie.css" />
	<![endif]-->
	<style type="text/css">
        body {
                margin: 0px;
                font-size: 12px;
                font-family: Verdana, Geneva, sans-serif;
				background-color: #000000;
				color: #000000;
									background-image: url('//asset-server.libsyn.com/show/k-4af4f6dfbff96e93/assets/background_mp1.png');
				        }
				
		img.item-web-image {
			max-width: 300px;
			float: right;
			margin-left: 8px;
			margin-bottom: 8px;
		}

        a, a:active, a:link, a:visited {
                color: #000000;
                text-decoration: none;
        }

        a:hover {
                text-decoration: underline;
        }

        p {
                margin-top: 0em;
                margin-bottom: 1em;
        }
		
		button, input[type="submit"] {
			background-color: #B50D01;
			border: 1px solid #f0f0f0;
			color: #ffffff;
		}
		
		.libsyn-podcast-page, #premium-banner-inner, #status-message-inner {
			max-width: 768px;
            min-width: 320px;
			margin-left: auto;
            margin-right: auto;
		}
		
        .libsyn-podcast-page {
                background-color: #ffffff;
                margin-bottom: 40px;
                -moz-border-bottom-left-radius: 15px;
                -webkit-border-bottom-left-radius: 15px;
                -khtml-border-bottom-left-radius: 15px;
                border-bottom-left-radius: 15px;
                -moz-border-bottom-right-radius: 15px;
                -webkit-border-bottom-right-radius: 15px;
                -khtml-border-bottom-right-radius: 15px;
                border-bottom-right-radius: 15px;
				        }
		
		#premium-banner-wrapper {
			background-color: #B50D01;
			height: 40px;
			position:fixed;
			top: 0;
			z-index: 100;
			line-height: 40px;
			width: 100%;
			font-size: 14px;
		}
		
		#status-message-wrapper {
			background-color: #FFFFFF;
			height: 40px;
			top: 0;
			position:fixed;
			z-index: 100;
			line-height: 40px;
			width: 100%;
			font-size: 14px;
		}
		
		#premium-banner-wrapper.has-premium {
			position: absolute;
			background-color: #06BB00;
		}
		
		#premium-banner-inner a{
			color: #ffffff;
			font-weight: bold;
		}
		
		#premium-banner-inner a:hover{
			color: #ffffff;
			text-decoration: underline;
		}	
		
		#premium-banner-wrapper .icon {
			margin-left: 20px;
			margin-right: 5px;
			position: relative;
			top: 3px;
			height: 16px;
			width: 16px;
			display: inline-block;
			text-indent: -99999px;
			overflow: hidden;
			background-repeat: no-repeat;
			background-image: url('http://static.libsyn.com/p/assets/platform/pcp-sprite-ffffff.png');
			background-position: 0 0;
		}
		
		#premium-banner-wrapper.has-premium .icon{
			background-position: -16px 0;
		}
			
			
        .libsyn-archives {
                margin-left: auto;
                margin-right: auto;
        }
		
		#categories_text ul {
			padding-left: 5px;
			list-style-type:none;
		}
		
		#categories_text li {
			margin: 5px auto;
		}

        .libsyn-show-header {
                background-color: #000000;
                height: 289px;
                font-weight: bold;
                color: #333;
                position: relative;
        }

        .libsyn-show-title,
        .libsyn-show-title:active,
        .libsyn-show-title:visited,
        .libsyn-show-title:link {
                display: block;
                position: absolute;
                left: 20px;
                top: 100px;
                font-size: 2.5em;
				color: #ffffff;
		}

        .libsyn-show-title:hover {
                text-decoration: none;
        }

        .libsyn-item-list {
                padding-left: 15px;
                padding-right: 15px;
        }

        .libsyn-social-button {
                background-image: url('http://static.libsyn.com/p/assets/platform/icon_argyle.png');
                overflow: hidden;
                color: transparent;
                display: block;
                height:35px;
                width:40px;
                float:left;
				cursor: pointer;
        }
		
		
        .libsyn-social-button span {
                display: none;
        }

        .libsyn-social-info {
                background-position: -475px center;
        }

        .libsyn-social-twitter {
                background-position: -2px center;
        }

        .libsyn-social-facebook {
                background-position: -60px center;
        }

        .libsyn-social-phone {
                background-position:-116px center;
        }

        .libsyn-social-email {
                background-position: -182px center;
        }

        .libsyn-social-itunes {
                background-position:-248px center;
        }

        .libsyn-social-rss {
                background-position:-306px center;
        }

        .libsyn-social-android {
                background-position: -343px center;
        }

        .libsyn-social-ios {
                background-position: -376px center; 
				width: 96px;
        }

		.libsyn-social-premium {
							background-position: -655px center;
                width: 55px;
						
			position:relative;
			top:-1px;
        }
		
		.libsyn-social-premium.logged-in {
			background-position: -795px center;
			width: 68px;
		}
		
		#libsyn-social-spacer {
			width: 100%;
			height: 18px;
		}
		
        .libsyn-social {
			width: 500px;
			margin-left: 20px;
			display: block;
        }

        .libsyn-search {
                z-index: 15;
                float: right;
				width: 200px;
                margin-right: 20px;
				margin-bottom: 8px;
				margin-top: 20px;
                text-align: right;
        }

        .libsyn-search-field {
                width: 150px;;
                padding: 4px;
                padding-left: 13px;
                font-size: 1.1em;
                -moz-border-radius: 15px;
                -webkit-border-radius: 15px;
                -khtml-border-radius: 15px;
                border-radius: 15px;
                border: 1px #333 solid;
                opacity: .25;
        }

        .libsyn-search-field:focus {
                opacity: .85;
                outline: none;
        }

        .libsyn-item {
                padding-top: 20px;
                padding-bottom: 20px;
                border-bottom: 1px #ccc solid;
        }

        .libsyn-item-title a {
                display: block;
                font-size: 1.6em;
                font-weight: bold;
                height: 1.6em;
                width: 100%;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
				color: #000000;
        }

        .libsyn-item-title a,
        .libsyn-item-title a:visited,
        .libsyn-item-title a:link,
        .libsyn-item-title a:active {
                color:  #000000;
        }

        .libsyn-item-title a:hover {
                text-decoration: none;
        }

        .libsyn-item-content li {
                list-style-type: none;
                line-height: 18px;
        }
		
		.libsyn-item-content a:hover {
			text-decoration: underline;
		}
		

        .libsyn-premium {
                display: block;
                float: left;
                background-image: url(http://static.libsyn.com/p/assets/platform/18px_lock.png);
                width: 12px;
                height: 18px;
                margin-right: 5px;
        }
        
        ul.libsyn-item-premium li{
                text-decoration:line-through;
        }       

        .libsyn-item-content .libsyn-item-premium {
                list-style-image: url(http://static.libsyn.com/p/assets/platform/18px_lock.png);
        }

        .libsyn-item-release-date {
                font-size: .9em;
                color: #555555;
                padding-bottom: 7px;
        }
		
        .libsyn-comment-count,
        .libsyn-comment-count:active,
        .libsyn-comment-count:visited,
        .libsyn-comment-count:link {
                background-image: url('//assets.libsyn.com/static/wtfpod/25px_comment_bubble_argyle.png');
                background-position: 0px -22px;
                display: block;
                float: right;
                height: 21px;
                width: 25px;
                padding-top: 1px;
				text-decoration: none;
                text-align: center;
                color: #fff !important;
				font-size: 0.9em !important;
				font-weight: normal !important;
		}

        .libsyn-comment-count:hover {
                text-decoration: none;
        }

        .libsyn-item-body {
                line-height: 1.5em;
				color: #000000;
        }

        .libsyn-item-social {
                margin-bottom: 10px;
        }

        .libsyn-item-player {
                margin-bottom: 10px;
        }

        .libsyn-episode-player .libsyn-player {
                border: 1px #aaa solid;
                background-color: #efefef;\
                /**
                -webkit-border-radius: 10px;
                -moz-border-radius: 10px;
                border-radius: 10px;
                **/
        }

        .libsyn-item-content a {
                font-weight: bold;
        }
        
        .libsyn-extra-content{
                text-transform:capitalize;      
        }       

        .libsyn-comments {
                margin-top: 20px;
        }

        .libsyn-comment-header {
                font-size: 1.5em;
                margin-bottom: 10px;
        }

        .libsyn-comments ul {
                padding: 0px;
                margin: 0px;
        }

        .libsyn-comment {
                list-style-type: none;
                margin-left: 0px;
                margin-bottom: 20px;
                padding: 20px;
                background-color: #eee;
        }

        .libsyn-comment-poster-name {
                font-weight: bold;
        }

        .libsyn-comment-creation-date {
                float: right;
        }

        .libsyn-comment-form {
                width: 70%;
                margin-top: 50px;
                margin-left: auto;
                margin-right: auto;
        }

        .libsyn-comment-form-fields {
                padding: 0px;
                margin: 0px;
        }

        .libsyn-comment-form-fields li {
                list-style-type: none;
                margin-left: 0px;
        }

        .libsyn-comment-form-fields label {
                display: block;
                margin-top: 10px;
        }

        #recaptcha {
                margin-top: 10px;
        }

        .libsyn-comment-form-fields label.error {
                margin-top: 0px;
                color: red;
        }

        .libsyn-comment-form-fields input,
        .libsyn-comment-form-fields textarea {
                border: 1px #aaa solid;
                padding: 7px;
                font-size: 1.4em;
                width: 100%;
        }

        .libsyn-comment-form-fields input:focus,
        .libsyn-comment-form-fields textarea:focus {
                border: 1px #000 solid;
                outline: none;
        }

        #submit {
                margin-top: 15px;
                width: auto;
                padding-left: 20px;
                padding-right: 20px;
                cursor: pointer;
        }

        .libsyn-alert {
                font-size: 1.1em;
                        font-weight: bold;
                padding: 10px;
                margin-bottom: 25px;
                border:1px #CCDF00 solid;
                background-color:#F8FFA7;
        }

        .libsyn-copyright {
                font-size: .85em;
                font-style: italic;
        }

        .pager {
                text-align: center;
                margin-top: 20px;
        }

        .pager .page {
                padding-left: 7px;
                padding-right: 7px;
        }

        .pager .currentPage {
                font-weight: bold;
                font-size: 1.4em;
        }

        .pager .previousPage {
                padding-right: 15px;
        }

        .pager .nextPage {
                padding-left: 15px;
        }

        .pager .anchorPage {
                padding-left: 10px;
                padding-right: 10px;
        }
		
		.pager a:hover {
			text-decoration: underline;
		}

        .padding {
                padding: 20px;
        }

        .center {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
        }

        .clear {
                clear: both;
        }

        .space {
                min-height: 20px;
                height: 20px;
        }	
		
		a, a:link, a:hover, a:visited {
			color: #000000;
			text-decoration:none;
		}

        .libsyn-navbar {
                background-color: #dcdcdc;
                padding: 2px 5px;
        }

        .libsyn-navbutton {
                color: #000000;
                font-size: 12px;
                text-decoration: none;
                vertical-align: middle;
                display: inline-block;
                margin: 5px;
        }

        .libsyn-navbutton, a.libsyn-navbutton:active, a.libsyn-navbutton:link, a.libsyn-navbutton:visited {
                text-decoration: none;
                color: #000000;
        }

        a.libsyn-navbutton:hover, div.libsyn-navbutton:hover {
                color: #000000;
                cursor: pointer;
                text-decoration: underline;
        }

        .libsyn-navbutton:active {
                color: #1874CD;
        }

        .libsyn-filterbar {
                background-color: #f0f0f0;
				color: #000000;
                padding: 7px 10px;
                font-weight: bold;
                border-bottom: 1px #999999 solid;
                border-top: 1px #999999 solid;
        }

        .libsyn-producer-message {
                background-color: #666666;
                color: #ffffff;
                font-size:14pt;
                padding: 7px 10px;
                border-bottom: 1px solid #999999;
                border-top: 1px solid #999999;
        }

        .libsyn-message-button {
                margin-left: auto;
                margin-right: auto;
				padding: 10px;
                cursor: pointer;
                display: block;
				font-weight: bold;
        }

        /* fix player fullscreen */
        .jp-playlist{display:none}
        .libsyn-fullscreen{z-index:1000000000}
        

        /* info modal */
        #info_text{
                display:none;
        }

        /* archives modal */
        #archives_text{
                display:none;
        }
		
		 /* categories modal */
        #categories_text{
                display:none;
        }

        #simplemodal-container {width:600px; color:#ffffff; background-color:#333333; border:4px solid #444444; padding:12px;}
	
        #simplemodal-container h2 {margin-top:0px}
		
		#simplemodal-container a {
			color: #ffffff;
		}
		
				
		#mobile_menu_drop {
			height: 30px;
			width: 30px;
			background-image: url('http://static.libsyn.com/p/assets/platform/pcp-resp-menu-white.png');
			display:none;
			position: absolute;
			top: 10px;
			left: 10px;
		}
		
		@media only screen and (max-width: 700px) {
			#mobile_menu_drop {
				display: inline-block;
			}
			
			.libsyn-social {
				z-index: 999;
				position: absolute;
				top: 50px;
				width: 100% !important;
				display: none;
				margin-left: 0 !important;
				background-color:rgba(0, 0, 0, 0.8);
				padding-top: 10px;
			}

						
			.libsyn-social .libsyn-social-button {
				display: block;
				float: none;
				background-image: none;
				z-index: 100;
				width: 100%;
			}
			
			.libsyn-social .libsyn-social-button span.libsyn-social-title {
				display:block;
				color: white;
				margin: 5px;
				font-size: 1.7em;
			}
			
			#simplemodal-container {width:80%; }
		}

        </style>
	<style type="text/css">

		</style>
<script type="text/javascript">
	var _gaq = _gaq || [];_gaq.push(['_setAccount','UA-1417413-3']);_gaq.push(['_trackPageview']);(function() {var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);})();

 </script>

 
  
</head>
<body>
			<div class="libsyn-podcast-page">
		<div class="libsyn-show-header">
			
<div class="libsyn-search"><form method="get" action="http://naccho.libsyn.com/size/25/"><input class="libsyn-search-field" type="text" name="search" placeholder="Search" /></form></div>			<div id="libsyn-social-spacer"></div>
<div id="mobile_menu_drop"></div><div class="libsyn-social">
<div onClick="showInfoModal()" class="libsyn-social-button libsyn-social-info"><span class="libsyn-social-title">Info</span></div>
<div id="info_text"><h2>The NACCHO Podcast Series</h2>The NACCHO Podcast series provides public health professionals with in-depth interviews featuring some of the field's top officials. Listeners can also learn the latest news from Washington, DC with our bi-weekly "Podcast From Washington."</div>
<a class="libsyn-social-button libsyn-social-facebook" href="http://facebook.com/https://www.facebook.com/NACCHOHQ/" target="_blank" title="Facebook"><span class="libsyn-social-title">Facebook</span></a>
<a class="libsyn-social-button libsyn-social-twitter" href="http://twitter.com/@nacchoalerts" target="_blank" title="Twitter"><span class="libsyn-social-title">Twitter</span></a>
<a class="libsyn-social-button libsyn-social-rss" href="http://naccho.libsyn.com/rss" target="_blank" title="RSS Feed"><span class="libsyn-social-title">RSS Feed</span></a>
</div> <!-- CLOSE <div class="libsyn-social"> -->			
<div class="clear"></div>			
<a class="libsyn-show-title" href="/">The NACCHO Podcast Series</a>		</div> <!-- CLOSE <div class="libsyn-show-header"> -->
		<div id="archives_text" class="libsyn-archives"><div style="border-bottom: 1px solid #aaa; width:40%;"><strong><a href="/2018">2018</a></strong><br /><span style="margin-left: 10px;"><a href="/2018/01">January</a><br></span><br /></div> <!-- CLOSE <div style="border-bottom: 1px solid #aaa; width:40%;"> --><br /><div style="border-bottom: 1px solid #aaa; width:40%;"><strong><a href="/2017">2017</a></strong><br /><span style="margin-left: 10px;"><a href="/2017/12">December</a><br></span><span style="margin-left: 10px;"><a href="/2017/11">November</a><br></span><span style="margin-left: 10px;"><a href="/2017/10">October</a><br></span><span style="margin-left: 10px;"><a href="/2017/09">September</a><br></span><span style="margin-left: 10px;"><a href="/2017/08">August</a><br></span><span style="margin-left: 10px;"><a href="/2017/07">July</a><br></span><span style="margin-left: 10px;"><a href="/2017/06">June</a><br></span><span style="margin-left: 10px;"><a href="/2017/05">May</a><br></span><span style="margin-left: 10px;"><a href="/2017/04">April</a><br></span><span style="margin-left: 10px;"><a href="/2017/03">March</a><br></span><span style="margin-left: 10px;"><a href="/2017/02">February</a><br></span><span style="margin-left: 10px;"><a href="/2017/01">January</a><br></span><br /></div> <!-- CLOSE <div style="border-bottom: 1px solid #aaa; width:40%;"> --><br /><div style="border-bottom: 1px solid #aaa; width:40%;"><strong><a href="/2016">2016</a></strong><br /><span style="margin-left: 10px;"><a href="/2016/12">December</a><br></span><span style="margin-left: 10px;"><a href="/2016/11">November</a><br></span><span style="margin-left: 10px;"><a href="/2016/10">October</a><br></span><span style="margin-left: 10px;"><a href="/2016/09">September</a><br></span><span style="margin-left: 10px;"><a href="/2016/08">August</a><br></span><span style="margin-left: 10px;"><a href="/2016/07">July</a><br></span><span style="margin-left: 10px;"><a href="/2016/06">June</a><br></span><span style="margin-left: 10px;"><a href="/2016/05">May</a><br></span><span style="margin-left: 10px;"><a href="/2016/04">April</a><br></span><span style="margin-left: 10px;"><a href="/2016/03">March</a><br></span><span style="margin-left: 10px;"><a href="/2016/02">February</a><br></span><span style="margin-left: 10px;"><a href="/2016/01">January</a><br></span><br /></div> <!-- CLOSE <div style="border-bottom: 1px solid #aaa; width:40%;"> --><br /></div> <!-- CLOSE <div id="archives_text" class="libsyn-archives"> -->				
<div class="libsyn-navbar">
<a class="libsyn-navbutton" href="/">All Episodes</a>
<div class="libsyn-navbutton" style="width:auto" onClick="showArchivesModal()">Archives</div>
</div> <!-- CLOSE <div class="libsyn-navbar"> -->		
<div class="libsyn-filterbar">Now displaying: Page 1</div>		
		
<div class="libsyn-item-list"><div class="libsyn-item" id="libsyn-item-6142653">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-the-2017-mrc-profile-study">Podcast from Washington: The 2017 MRC Profile Study</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-the-2017-mrc-profile-study#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Jan 12, 2018
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>On this week’s episode of “Podcast from Washington,” NACCHO Government Affairs staff Ian Goldstein and Eli Briggs discussed the confirmation hearing on the nomination of Alex Azar as Health and Human Services Secretary. They also discuss the Children’s Health Insurance Program (CHIP) reauthorization and a continuing resolution to fund the government after January 19.</p> <p>Later in the program, NACCHO’s Kabaye Diriba and Chevelle Glymph discuss the Medical Reserve Corps 2017 Profile Study.&nbsp;</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-the-2017-mrc-profile-study" pw:title="Podcast from Washington: The 2017 MRC Profile Study">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/6142653/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_Washington_1-10-18_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-6142653"> --><div class="libsyn-item" id="libsyn-item-6079299">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-an-interview-with-dean-for-boston-univ-school-of-public-health-dr-sandro-galea">Podcast from Washington - an Interview with Dean for Boston Univ. School of Public Health Dr. Sandro Galea</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-an-interview-with-dean-for-boston-univ-school-of-public-health-dr-sandro-galea#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Dec 21, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>In this week's episode of Podcast from Washington Ian Goldstein and Eli Briggs discuss the tax plan passed by Congress and the effects on public health. Also, Congress must pass a Continuing Resolution to keep the Federal Government funded after December 22.&nbsp;</p> <p>Later in the program, an interview with Dean for the Boston University School of Public Health Dr. Sandro Galea. Dr. Galea discussed his presentation at NACCHO Annual 2017 on the rising costs of healthcare per capita in the US versus other developed nations around the world. He also discussed health outcomes and how those outcomes are predicted by zip code.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-an-interview-with-dean-for-boston-univ-school-of-public-health-dr-sandro-galea" pw:title="Podcast from Washington - an Interview with Dean for Boston Univ. School of Public Health Dr. Sandro Galea">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/6079299/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_Washington_12-21-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-6079299"> --><div class="libsyn-item" id="libsyn-item-6024618">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-an-interview-with-sandra-lobo">Podcast from Washington: an Interview with Sandra Lobo</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-an-interview-with-sandra-lobo#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Dec 8, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>On this week's Podcast from Washington, Ian Goldstein gives a brief update on the tax bill and its effects on the prevention and public health fund. Also, an update on NACCHO activities.</p> <p>Later in the podcast, Ian Goldstein sat down with the Executive Director of Northwest Bronx Clergy Coalition Sandra Lobo.&nbsp;The Northwest Bronx Clergy Coalition is an organization that fights for racial and economic justice. They discuss a brief history of the Bronx and social justice issues.&nbsp;</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-an-interview-with-sandra-lobo" pw:title="Podcast from Washington: an Interview with Sandra Lobo">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/6024618/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_Washington_12-6-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-6024618"> --><div class="libsyn-item" id="libsyn-item-5954793">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-update-an-interview-with-dr-jay-bhatt">Podcast from Washington Update: An Interview with Dr. Jay Bhatt</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-update-an-interview-with-dr-jay-bhatt#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Nov 17, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>On the latest episode of Podcast from Washington, Government Affairs team members Ian Goldstein and Eli Briggs discuss the Prevention and Public Health Fund that may be used to offset tax cuts. They also discuss the NACCHO Opioid briefing, and Hurricane Harvey supplemental funding.</p> <p>Later in the program, Ian Goldstein interviewed Chief Medical Officer and President of the Health Research and Educational Trust of the American Hospital Association Dr. Jay Bhatt. They discussed his time as a health officer in Illinois where Dr. Bhatt was instrumental in the work of Healthy Chicago. They also discuss how data can address social determinants of health.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-update-an-interview-with-dr-jay-bhatt" pw:title="Podcast from Washington Update: An Interview with Dr. Jay Bhatt">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5954793/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_Washington_11-16-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5954793"> --><div class="libsyn-item" id="libsyn-item-5881244">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-hurricane-harvey-response-with-dr-umair-shah">Podcast from Washington: Hurricane Harvey Response with Dr. Umair Shah</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-hurricane-harvey-response-with-dr-umair-shah#comments">2</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Oct 26, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>In this week's episode of Podcast from Washington, Government Affairs team members Ian Goldstein and Eli Briggs discuss the President's declaration of a public health emergency to combat the rising opioid epidemic. They also discuss the Murray-Alexander ACA stabilization bill, and a congressional roundtable discussion on gun violence.</p> <p>NACCHO President and Executive Director of Harris County Public Health Dr. Umair Shah is this week’s guest on the NACCHO Podcast Series. Dr. Shah described his harrowing experience balancing his leadership role in public health and as a victim of Hurricane Harvey that ravaged his community and jurisdiction in Harris County, TX. Dr. Shah talked about the importance of public health emergency preparedness and hospital system preparedness programs that were integral in the response and recovery efforts following the hurricane.</p> <p>Please subscribe to the <a href= "http://naccho.libsyn.com/">NACCHO Podcast Series</a> and rate and review our podcasts. We want to bring you more topics that are of interest to the NACCHO membership.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-hurricane-harvey-response-with-dr-umair-shah" pw:title="Podcast from Washington: Hurricane Harvey Response with Dr. Umair Shah">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5881244/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_Washington_10-26-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5881244"> --><div class="libsyn-item" id="libsyn-item-5837508">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-interview-with-boston-public-health-commission-director-monica-valdes-lupi">Podcast from Washington - Interview with Boston Public Health Commission Director Monica Valdes Lupi</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-interview-with-boston-public-health-commission-director-monica-valdes-lupi#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Oct 13, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>In this week’s Podcast from Washington update, NACCHO government affairs team members Ian Goldstein and Eli Briggs discuss changes made by Executive Order to the Affordable Care Act. Also, NACCHO Senior Advisor for Public Health Programs Dr. Oscar Alleyne is on the program to give an update on hurricane and wildfire relief efforts by local health departments.</p> <p>Later in the program Ian Goldstein sat down with Boston Public Health Commission Executive Director Monica Valdes Lupi. The two discuss public health strategic priorities in Boston including, health equity, strengthening activities around the opioid epidemic, and strengthening health care partnerships.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-interview-with-boston-public-health-commission-director-monica-valdes-lupi" pw:title="Podcast from Washington - Interview with Boston Public Health Commission Director Monica Valdes Lupi">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5837508/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_Washington_10-12-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5837508"> --><div class="libsyn-item" id="libsyn-item-5766292">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-an-interview-with-dr-michael-brumage">Podcast from Washington and Interview with Dr. Michael Brumage on the Opioid Epidemic</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-an-interview-with-dr-michael-brumage#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Sep 22, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>In this week's episode of "Podcast from Washington," Eli Briggs and Ian Goldstein discuss the Graham-Cassidy healthcare bill and what it would mean for the Prevention and Public Health Fund. They also discuss the reauthorization of MIECHV and CHIP.</p> <p>Next, Ian Goldstein sat down with Health Director of Kanawha County, WV Dr. Michael Brumage to discuss his devastating experience with the opioid epidemic that took the lives of 64,000 Americans in 2016. Dr. Brumage also discussed how a repeal of the Affordable Care Act would affect his county's Medicaid population.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-an-interview-with-dr-michael-brumage" pw:title="Podcast from Washington and Interview with Dr. Michael Brumage on the Opioid Epidemic">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5766292/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_Washington_9-21-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5766292"> --><div class="libsyn-item" id="libsyn-item-5718339">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-national-preparedness-month-with-marisa-raphael">Podcast from Washington - National Preparedness Month with Marisa Raphael</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-national-preparedness-month-with-marisa-raphael#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Sep 7, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>In this week's episode, Ian Goldstein and Eli Briggs discuss the Senate Labor, Health and Human Services, and Education Appropriations bill that was voted out of committee. Also discussed, a budget deal attached to Hurricane Harvey, ACA hearings, and DACA.</p> <p>Later in the program Ian Goldstein interviewed Deputy Commissioner of the office of Emergency Preparedness and Response at the New York City Department of Health and Mental Hygiene Marisa Raphael about National Preparedness Month and preparedness efforts in New York City.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-national-preparedness-month-with-marisa-raphael" pw:title="Podcast from Washington - National Preparedness Month with Marisa Raphael">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5718339/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_Washington_9-7-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5718339"> --><div class="libsyn-item" id="libsyn-item-5675643">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-national-breastfeeding-month-with-calondra-tibbs">Podcast from Washington: National Breastfeeding Month with Calondra Tibbs</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-national-breastfeeding-month-with-calondra-tibbs#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Aug 25, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p><strong>In this week’s Podcast from Washington, Senior Director for Government Affairs Eli Briggs and Government Affairs Specialist Ian Goldstein discuss how local health officials can</strong> <a href="http://www.naccho.org/advocacy/take-action">take action</a> <strong>and talk to their Members of Congress while they are still out for August recess through September 4. NACCHO encourages members to schedule meetings and invite Members of Congress to visit their local health department. Download</strong> <a href= "http://www.naccho.org/uploads/downloadable-resources/gov-advocacy-toolkit.pdf"> NACCHO’s Advocacy Toolkit</a> <strong>to learn more.</strong></p> <p><strong>&nbsp;</strong></p> <p><strong>Later in the program, Ian Goldstein talks with Senior Advisor for Public Health Programs Calondra Tibbs about the local health department role in</strong> <a href= "http://breastfeeding.naccho.org/">breastfeeding initiatives</a><strong>. August is National Breastfeeding Month, and August 25-31 is Black Breastfeeding Week.</strong></p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-national-breastfeeding-month-with-calondra-tibbs" pw:title="Podcast from Washington: National Breastfeeding Month with Calondra Tibbs">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5675643/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/podcast_from_washington_8-23-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5675643"> --><div class="libsyn-item" id="libsyn-item-5562010">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/an-interview-with-naccho-president-dr-umair-shah">An Interview with NACCHO President Dr. Umair Shah</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/an-interview-with-naccho-president-dr-umair-shah#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Jul 21, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>In this week's episode, Government Affairs Specialist Ian Goldstein sat down with Health Director for Harris County Public Health and new NACCHO President Dr. Umair Shah. They discussed Dr. Shah's priorities as NACCHO's President for the next year, and how he hopes to bring his leadership and experience from Harris County Public Health to his new role at NACCHO.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/an-interview-with-naccho-president-dr-umair-shah" pw:title="An Interview with NACCHO President Dr. Umair Shah">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5562010/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Umair_Shah_FINALmixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5562010"> --><div class="libsyn-item" id="libsyn-item-5561373">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-and-an-interview-with-naccho-president-dr-umair-shah">Podcast from Washington and an Interview with NACCHO President Dr. Umair Shah</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-and-an-interview-with-naccho-president-dr-umair-shah#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Jul 21, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>On this week's episode, NACCHO's Ian Goldstein and Eli Briggs discuss the FY2018 Labor, Health and Human Services, and Education bill in the House Appropriations Committee. They also discuss the repeal and replacement of the Affordable Care Act.</p> <p>Later on the program, Ian Goldstein sat down with NACCHO's new President and Health Director for Harris County in TX, Dr. Umair Shah. They discuss Dr. Shah's experience in public health and his priorities for the year as NACCHO President.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-and-an-interview-with-naccho-president-dr-umair-shah" pw:title="Podcast from Washington and an Interview with NACCHO President Dr. Umair Shah">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5561373/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_Washignton_7-20-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5561373"> --><div class="libsyn-item" id="libsyn-item-5490051">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-6-28-17-and-an-interview-with-david-rozell">Podcast from Washington 6-28-17 and an Interview with David Rozell</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-6-28-17-and-an-interview-with-david-rozell#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Jun 28, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>In this week's Podcast from Washington, Eli Briggs and Ian Goldstein discuss the Senate health care bill that was not brought to a vote following the Congressional Budget Office score that said 22 million people would lose insurance coverage. Also, they discuss NACCHO Annual 2017.</p> <p>David Rozell is the Emergency Preparedness Manager for Tulare County, California. David discussed the CASPER plan and how to implement public health emergency preparedness strategies in a scattered population.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-6-28-17-and-an-interview-with-david-rozell" pw:title="Podcast from Washington 6-28-17 and an Interview with David Rozell">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5490051/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_Washington_6-28-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5490051"> --><div class="libsyn-item" id="libsyn-item-5454766">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-june-16-with-guest-captain-rob-tosatto">Podcast from Washington June 16 with guest Captain Rob Tosatto</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-june-16-with-guest-captain-rob-tosatto#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Jun 16, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>On this week's episode of Podcast from Washington, government affairs team members Ian Goldstein and Eli Briggs discuss the President's FY2018 budget and how you can prevent cuts to public health programs. Also discussed, Affordable Care Act repeal.&nbsp;</p> <p>Our interview this week is with Medical Reserve Corps Director Captain Rob Tosatto. Captain Tosatto discusses the importance of the MRC network and how they are best fit to respond to disasters in their communities.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-june-16-with-guest-captain-rob-tosatto" pw:title="Podcast from Washington June 16 with guest Captain Rob Tosatto">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5454766/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_washington_6-15-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5454766"> --><div class="libsyn-item" id="libsyn-item-5386296">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-5-26-17-interview-with-dr-stephen-redd">Podcast from Washington 5-26-17 Interview with Dr. Stephen Redd</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-5-26-17-interview-with-dr-stephen-redd#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
May 24, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>In this week's episode of Podcast from Washington Ian Goldstein and Eli Briggs discuss the release of President Trump's first comprehensive budget and what that means for public health.&nbsp;</p> <p>Later in the program, Ian Goldstein sat down with CDC Director for Public Health Emergency Preparedness and Response Dr. Stephen Redd from the 2017 Public Health Emergency Preparedness Summit in Atlanta. They discuss preparedness and response efforts by local health departments.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-5-26-17-interview-with-dr-stephen-redd" pw:title="Podcast from Washington 5-26-17 Interview with Dr. Stephen Redd">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5386296/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_Washington_5-24-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5386296"> --><div class="libsyn-item" id="libsyn-item-5348330">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-an-interview-with-commander-skip-payne">Podcast from Washington an Interview with Commander Skip Payne</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-an-interview-with-commander-skip-payne#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
May 11, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>In this week's Podcast from Washington, Government Affairs team members Ian Goldstein and Eli Briggs discuss AHCA, as well as the pending President's budget for FY2018. Also discussed, the Senate approved FDA Commissioner nominee Scott Gottlieb.&nbsp;</p> <p>Commander Skip Payne sat down with Ian Goldstein at the 2017 Public Health Preparedness Summit in Atlanta, GA. They discussed the Medical Reserve Corps, and the future of the Corps facing steep budget cuts.&nbsp;</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-an-interview-with-commander-skip-payne" pw:title="Podcast from Washington an Interview with Commander Skip Payne">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5348330/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_Washington_5-11-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5348330"> --><div class="libsyn-item" id="libsyn-item-5304926">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/blue-ribbon-study-on-biodefense-with-dr-ellen-carlin-and-dr-asha-george">Blue Ribbon Study on Biodefense with Dr. Ellen Carlin and Dr. Asha George</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/blue-ribbon-study-on-biodefense-with-dr-ellen-carlin-and-dr-asha-george#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Apr 27, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>Dr. Ellen Carlin and Dr. Asha George are Co-Directors for the Blue Ribbon Study Panel on Biodefense, a comprehensive assessment of the state of US biodefense efforts. Dr. Carlin and Dr. George discuss the 33 steps the government can take to mitigate the threats, and improve the nation's biodefense capabilities.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/blue-ribbon-study-on-biodefense-with-dr-ellen-carlin-and-dr-asha-george" pw:title="Blue Ribbon Study on Biodefense with Dr. Ellen Carlin and Dr. Asha George">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5304926/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Dr._Carlin_and_Dr._George_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5304926"> --><div class="libsyn-item" id="libsyn-item-5223428">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-march-29-2017">Podcast from Washington - March 29, 2017</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-march-29-2017#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Mar 31, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>In this week's episode of "Podcast from Washington," Ian Goldstein and Eli Briggs from NACCHO Government Affairs discuss the death of the American Health Care Act and what comes next. Also discussed, Trump's budget cuts and the new drug czar.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-march-29-2017" pw:title="Podcast from Washington - March 29, 2017">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5223428/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_Washington_3-29-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5223428"> --><div class="libsyn-item" id="libsyn-item-5164607">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-3-91-17">Podcast from Washington 3-91-17</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-3-91-17#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Mar 13, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>In this week's episode of Podcast from Washington, Ian Goldstein and Eli Briggs from NACCHO's Government Affairs team analyze the replacement bill American Health Care Act. They look at what's in the bill and what it can mean for the future of public health if passed.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-3-91-17" pw:title="Podcast from Washington 3-91-17">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5164607/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_Washington_3-9-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5164607"> --><div class="libsyn-item" id="libsyn-item-5143878">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/chief-health-strategist-in-baltimore-with-dr-leana-wen">Chief Health Strategist in Baltimore with Dr. Leana Wen</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/chief-health-strategist-in-baltimore-with-dr-leana-wen#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Mar 6, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>Baltimore City Health Commissioner Dr. Leana Wen sat down with Government Affairs Specialist Ian Goldstein to discuss the Chief Health Strategist position in Baltimore City. Dr. Wen describes how the Chief Health Strategist framework addresses needs and issues of local health officials in Baltimore and throughout the country. Finally, Dr. Wen addresses the challenges she sees in public health over the next 3-5 years.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/chief-health-strategist-in-baltimore-with-dr-leana-wen" pw:title="Chief Health Strategist in Baltimore with Dr. Leana Wen">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5143878/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Dr._Wen_CHS_Podcast_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5143878"> --><div class="libsyn-item" id="libsyn-item-5125331">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-2-23-17">Podcast from Washington 2-23-17</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-2-23-17#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Feb 28, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>In the latest Podcast from Washington, NACCHO's Government Affairs team members Ian Goldstein and Director Eli Briggs discuss the Prevention and Public Health Fund, as well as ACA repeal and replace. They also discuss what to expect from the Office of Management and Budget with new Director Mick Mulvaney.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-2-23-17" pw:title="Podcast from Washington 2-23-17">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5125331/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_Washington_2-23-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5125331"> --><div class="libsyn-item" id="libsyn-item-5107844">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/public-health-advocacy-with-ed-hunter">Public Health Advocacy with Ed Hunter</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/public-health-advocacy-with-ed-hunter#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Feb 22, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>NACCHO’s Ian Goldstein talks to Edward L. Hunter, who joined the de Beaumont Foundation as President and Chief Executive Officer in February 2015. As a former principal CDC spokesperson to Congress, the Administration, and public health organizations, Mr. Hunter was a leading voice for the nation’s preeminent public health and scientific research programs. Today, he’ll talk about the critical role of policy, and how public health officials can engage more effectively with their elected officials at both the local and national levels.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/public-health-advocacy-with-ed-hunter" pw:title="Public Health Advocacy with Ed Hunter">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5107844/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Public_Health_Advocacy_with_Ed_Hunter_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5107844"> --><div class="libsyn-item" id="libsyn-item-5080234">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/health-inequity-at-the-county-level-with-dr-ali-mokdad">Health Inequity at the County Level with Dr. Ali Mokdad</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/health-inequity-at-the-county-level-with-dr-ali-mokdad#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Feb 13, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>NACCHO Executive Director Dr. LaMar Hasbrouck interviews Professor of Global Health at the Institute for Health Metrics and Evaluation at the University of Washington. Dr. Hasbrouck and Dr. Mokdad discuss the newly launched Population Health Initiative, as well as health inequity at the county level.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/health-inequity-at-the-county-level-with-dr-ali-mokdad" pw:title="Health Inequity at the County Level with Dr. Ali Mokdad">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5080234/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Dr_Mokdad_Podcast_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5080234"> --><div class="libsyn-item" id="libsyn-item-5059020">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/podcast-from-washington-february-6-2017">Podcast from Washington - February 6, 2017</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/podcast-from-washington-february-6-2017#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Feb 6, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>In the latest episode of podcast from Washington Government Affairs Director Eli Briggs and Government Affairs Specialist Ian Goldstein discuss Rep. Tom Price's confirmation as Secretary for HHS. The also discuss EPA regulations and Congress' implementation of the Congressional Review Act for all regulations. Finally, they discuss repeal of the Affordable Care Act and consequences including the repeal of the Prevention and Public Health Fund.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/podcast-from-washington-february-6-2017" pw:title="Podcast from Washington - February 6, 2017">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5059020/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Podcast_from_Washington_2-2-17_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5059020"> --><div class="libsyn-item" id="libsyn-item-5037046">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/the-2016-naccho-profile-study-with-nathalie-robin">The 2016 NACCHO Profile Study with Nathalie Robin</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/the-2016-naccho-profile-study-with-nathalie-robin#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Jan 30, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>NACCHO has released its 2016 National Profile of Local Health Departments. Senior Specialist for Research and Evaluation at NACCHO Nathalie Robin sat down with Government Affairs Specialist Ian Goldstein to discuss the findings in the report. The report provides a comprehensive overview of local health departments, including their participation in emergency preparedness, accreditation, and information technology.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/the-2016-naccho-profile-study-with-nathalie-robin" pw:title="The 2016 NACCHO Profile Study with Nathalie Robin">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5037046/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Profile_with_Nathalie_Robin_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5037046"> --><div class="libsyn-item" id="libsyn-item-5016121">
<div class="libsyn-item-title">
<a href="http://naccho.libsyn.com/defining-the-chief-health-strategist-with-dr-lamar-hasbrouck">Defining the Chief Health Strategist with Dr. LaMar Hasbrouck</a>
<a class="libsyn-comment-count" href="http://naccho.libsyn.com/defining-the-chief-health-strategist-with-dr-lamar-hasbrouck#comments">0</a>
</div> <!-- CLOSE <div class="libsyn-item-title"> -->
<div class="libsyn-item-release-date">
Jan 23, 2017
</div> <!-- CLOSE <div class="libsyn-item-release-date"> -->
<div class="libsyn-item-body">
<p>NACCHO Executive Director Dr. LaMar Hasbrouck sat down with Government Affairs Specialist Ian Goldstein to discuss the Chief Health Strategist Framework. Dr. Hasbrouck also discusses the biggest challenges facing public health officials in the next three to five years.</p> 
</div> <!-- CLOSE <div class="libsyn-item-body"> -->
<div class="libsyn-item-social">
<div class="pw-widget pw-counter-horizontal" pw:url="http://naccho.libsyn.com/defining-the-chief-health-strategist-with-dr-lamar-hasbrouck" pw:title="Defining the Chief Health Strategist with Dr. LaMar Hasbrouck">
<a class="pw-button-facebook pw-look-native"></a>
<a class="pw-button-twitter pw-look-native"></a>
<a class="pw-button-pinterest pw-look-native"></a>
<a class="pw-button-googleplus pw-look-native"></a>
<a class="pw-button-post-share"></a>
</div>
</div> <!-- CLOSE <div class="libsyn-item-social"> -->
<div class="libsyn-item-player">
<iframe style="border: none" src="//html5-player.libsyn.com/embed/episode/id/5016121/height/90/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/forward/tdest_id/414550/render-playlist/no/custom-color/87A93A/" height="90" width="100%" scrolling="no"  allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div> <!-- CLOSE <div class="libsyn-item-player"> -->
<div class="libsyn-item-content">
<ul class="libsyn-item-free">
<li><a href="http://traffic.libsyn.com/naccho/Dr_Hasbrouck_Chief_Health_Strategist_mixdown.mp3?dest-id=414550" >Download this Episode</a></li>
</ul>
</div> <!-- CLOSE <div class="libsyn-item-content"> -->

</div> <!-- CLOSE <div class="libsyn-item" id="libsyn-item-5016121"> -->
</div> <!-- CLOSE <div class="libsyn-item-list"> -->		
<div class="space"></div>		
<div class="pager">
<a class="currentPage page" href="/page/1/size/25">1</a>
<a class="page" href="/page/2/size/25">2</a>
<a class="nextPage" href="/page/2/size/25">Next &raquo;</a>
</div> <!-- End Pager -->		
<div class="space"></div>			</div> <!-- CLOSE <div class="libsyn-podcast-page"> -->

	
	<script src="//i.po.st/share/script/post-widget.js#publisherKey=j83vqrk56jrkmkqqt00c" type="text/javascript"></script>
</body>
</html>
