<!doctype html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8">        <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9">               <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js">                      <!--<![endif]-->
<head>
    <meta charset="utf-8">

    <title>Wales is leading the world with its new public health law</title>

    <link type="text/css" rel="stylesheet" href="/_assets/css/general/basic.css" />
    <link rel="canonical" href="https://www-2018.swansea.ac.uk/press-office/news-archive/2017/walesisleadingtheworldwithitsnewpublichealthlaw.php" /> 





<meta name="viewport" content="width=device-width, initial-scale=1.0;">
<meta property="su:page-type" content="News Item">
<meta property="su:section-id" content="112621">

    <script type="text/javascript" src="/_assets/vendor/enhance.js"></script>
    <script type="text/javascript">

        var SU =        {
                            customScripts: {
                                preRepositioning:  [],
                                postRepositioning: []
                            }
                        },

            dataLayer = [],

            styles =    [
                            '/_assets/css/general/desktop.css',
                            {
                                href: '/_assets/css/common/ie.css',
                                iecondition: 'all'
                            },
                            {
                                href: '/_assets/css/common/ie7.css',
                                iecondition: 7
                            },
                            {
                                href: '/_assets/css/common/ie8.css',
                                iecondition: 8
                            }
                        ],
        
            scripts =   [
                           '/_assets/js/common/modernizr-jquery.all.min.js'
                        ];
        

        

        

        scripts = scripts.concat([
            '/_assets/vendor/jquery-plugins/cycle2/jquery.cycle2.js',
            '/_assets/vendor/jquery-plugins/cycle2/jquery.cycle2.swipe.js',
            '/_assets/vendor/jquery-plugins/auto-complete/jquery.auto-complete.js',
            '/_assets/vendor/mustache.js',
            '/_assets/js/common/console.js',
            '/_assets/js/common/su.js',
            '/_assets/js/common/su/http/link.js',
            '/_assets/js/common/jquery-plugins/jQuery.showCookieMessage.js',
            '/_assets/vendor/jquery-plugins/ba-throttle-debounce/jquery.ba-throttle-debounce.js',
            '/_assets/js/common/jquery-plugins/jQuery.initialiseNavigation.js',
            '/_assets/js/common/jquery-plugins/jQuery.inputClear.js',
            '/_assets/js/general/desktop/enhanceFooterLinks.js',
            '/_assets/js/general/desktop/jQuery.initialiseSplashGallery.js',
            '/_assets/js/general/desktop/jQuery.initialiseFeaturedGallery.js',
            '/_assets/js/general/desktop/jQuery.initialiseTabPods.js',
            '/_assets/js/general/desktop/jQuery.initialiseQuadSliders.js',
            '/_assets/js/general/desktop/jQuery.stripeTableRows.js',
            '/_assets/vendor/jquery-plugins/ba-bbq/jquery.ba-bbq.js',
            '/_assets/js/general/desktop/jQuery.initialiseExpanders.js',
            '/_assets/vendor/jquery-plugins/cookie/jquery.cookie.js',
            '/_assets/vendor/jquery-plugins/jBreadCrumb/js/jquery.easing.1.3.js',
            '/_assets/vendor/jquery-plugins/jBreadCrumb/js/jquery.jBreadCrumb.1.1.js',
            '/_assets/js/general/desktop.js',
            '/_assets/js/precedent/coreFunctions.js'
        ]);

        enhance({
            loadStyles: styles,
            loadScripts: scripts,
            forcePassText: 'Enhanced version',
            forceFailText: 'Basic version'
        });
    </script>


</head>

<body id="content" class="layout-general-wrapper">
 

    <div id="general" class="layout-general">

        <!--noindex-->
        <div id="header" class="layout-header">
<h1 id="logo" class="logo">
    <span class="logo-text">Wales is leading the world with its new public health law</span>
    <a id="logo-link" href="https://www.swansea.ac.uk/">

        <img class="logo-image" src="/_assets/images/precedent/logo.en.png" alt="Swansea University Logo" />

    </a>
</h1>
            <div id="skipToContent" class="skip-to-content">
                <a class="skip-to-content-link" tabindex="1" href="#content-items" title="skip to content">Skip to content</a>
            </div>

<div id="globalNavWrapper" class="header-links">
    <ul id="globalNav" class="header-links-list">
    
        <!-- navigation object : SU_audience navigation --><li class="header-links-list-item"><a href="http://myuni.swan.ac.uk/">Current Students</a></li><li class="header-links-list-item"><a href="https://staff.swansea.ac.uk/">Staff</a></li><li class="header-links-list-item"><a href="http://www.swanseauniversity.com.cn">&#20013;&#25991;</a></li>
        
        

    </ul>
</div>
            
            <div id="globalSearch" class="global-search-form">
<div class="global-search-form">
	<form action="https://www.swansea.ac.uk/search/">
	  <div>
	    <input type="hidden" name="c" value="swansea-web" />
	    <input
           id="global-search-form-q"
	       type="text"
	       name="q"
	       placeholder="Site Search"
	       size="31"
	       class="global-search-form-query"
	    />
	    <input class="global-search-form-submit" type="submit" value="GO" />
	  </div>
	</form>
</div>

<script class="register-custom-scripts">
(function () {
    SU.customScripts.postRepositioning.push(function () {
    
        var endpoint = 'https://swansea.funnelback.co.uk/s/suggest.json',

            unique = function(arr) {
                var hash = {}, result = [];
                for ( var i = 0, l = arr.length; i < l; ++i ) {
                    if ( !hash.hasOwnProperty(arr[i]) ) {
                        hash[ arr[i] ] = true;
                        result.push(arr[i]);
                    }
                }
                return result;
            },
            
            setHandler = function() {
                $('#global-search-form-q').off().autoComplete({
                    source: function(term, response) {
                        console.log("You typed [" + term + "]");
                        $.getJSON(
                            endpoint,
                            {
                                collection:    'swansea-web',
                                partial_query: term
                            },
                            function(data) {
                                response(unique(data));
                            }
                        );
                    }
                });
            };
    
        console.group('Initialising auto complete');
        window.setTimeout(function () {
            setHandler();
        }, 500);
        
        console.groupEnd();
    });
}());
</script>
            </div>
            
            <div id="naviBar" class="main-nav">
<!-- navigation object : SU_Main_Nav -->

            </div>
        </div>
        <!--endnoindex-->
        
        <div class="layout-container">
            <div id="main" class="layout-content">
                <div id="contentHeader" class="content-header">

                    <!--noindex-->
<div class="breadCrumbHolder module">
    <div class="breadCrumb module">
        <ul>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/" itemprop="url">
                    <span itemprop="title">Home</span>
                </a>
            </li>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/press-office/" itemprop="url">
                    <span itemprop="title">Press Office</span>
                </a>
            </li>
	</ul>
    </div>
</div>
                    <!--endnoindex-->

                    <h1 class="content-header-heading">Wales is leading the world with its new public health law</h1>
                </div>

                <div id="splash-items" class="layout-splash">
                </div>

                <!--noindex-->
                <div class="layout-content-nav">
                    <div id="secondaryNavWrapper"></div>
                </div>
                <!--endnoindex-->

                <div id="content-items" class="layout-content-items content-items">
                    <div class="layout-featured-items">
                    </div>

                    <div class="layout-article-items">
  <div class="news-item-fulltext">
<p style="padding: 1.5em; text-align: center; background-color: #ffc266; font-weight: bold">
    Please note, this page has been archived and is no longer being updated.
</p>
    <p class="news-item-summary">The following article written by Associate Professor Richard Owen was first published in The Conversation.</p>

    <div class="news-item-content">
        <h1><img alt="File 20170530 30121 xkjpyk" src="https://cdn.theconversation.com/files/171483/width754/file-20170530-30121-xkjpyk.jpg" style="font-size: 12px;" /><span class="attribution" style="font-size: 12px;"><a class="source" href="https://www.shutterstock.com/image-photo/cardiff-wales-united-kingdom-march-15-301185005?src=jQZz0LHgHM0460CSX_AHbA-1-93">MA PHOTGRAPY/Shutterstock</a></span><span style="font-size: 12px;"><a href="https://theconversation.com/profiles/richard-owen-221063">Richard Owen</a>, <em><a href="http://theconversation.com/institutions/swansea-university-2638">Swansea University</a></em></span></h1>
<p>When it comes to world-leading health legislation, you might expect it to come from Sweden, which is famous for citizen engagement in the health service, or a large global power. You probably wouldn&rsquo;t expect it to come out of Wales. And yet, the country&rsquo;s devolved government is <a href="http://www.walesonline.co.uk/news/health/ams-passed-new-law-means-13044775">close to enacting</a> another innovative law aimed at bettering the health of its people.</p>
<p>Wales is no stranger to being the first of the UK nations to enforce legislation that benefits both human health and the environment. Since October 2011, there has been a minimum 5p charge on carrier bags in the country &ndash; a move which was followed by <a href="https://www.theguardian.com/environment/2013/apr/08/northern-ireland-plastic-bag-charge1">Northern Ireland in 2013</a>, <a href="http://www.bbc.co.uk/news/uk-scotland-34575364">Scotland in 2014</a> and <a href="https://theconversation.com/the-5p-carrier-bag-charge-has-paved-the-way-for-other-waste-reduction-policies-64911">England in 2015</a>.</p>
<p>In 2015, a ban on <a href="http://gov.wales/newsroom/health-and-social-services/2015/151001ban/?lang=en">smoking in cars with passengers aged under 18 years old</a> was enacted, which was <a href="http://www.bbc.co.uk/news/health-31310685">again followed by their English neighbours</a>. Scotland enforced <a href="http://www.bbc.co.uk/news/uk-scotland-scotland-politics-38184585">a similar law</a> a year later, while Northern Ireland has recently completed a <a href="http://www.bbc.co.uk/news/uk-northern-ireland-38531586">consultation on its provision</a>.</p>
<p>Nor does it lag behind on a global scale: the pioneering <a href="http://gov.wales/topics/people-and-communities/people/future-generations-act/?lang=en">Well-being of Future Generations (Wales) Act 2015</a> has been described by the United Nations as &ldquo;<a href="http://gov.wales/newsroom/environmentandcountryside/2015/150429-future-generations-act/?lang=en">world-leading</a>&rdquo;. Among other things, its seven well-being goals aim to make Wales a healthier place, where physical and mental well-being are maximised and in which choices and behaviours that benefit future health are understood.</p>
<p>Though the new Public Health (Wales) Bill <a href="http://gov.wales/topics/health/nhswales/bill/?lang=en">includes specific provisions</a> for banning smoking in hospital grounds, placing a duty on the Welsh government to produce a national obesity strategy and making pharmacy services more responsive to community needs, the fact that it puts <a href="http://www.who.int/heli/impacts/hiabrief/en/">Health Impact Assessments</a> (HIAs) on a statutory footing is the most interesting and important feature.</p>
<h2>Health in all policies</h2>
<p>This latest public health law will make Wales the first country in the world to have statutory HIAs. At present, only the Australian <a href="http://www.austlii.edu.au/au/legis/tas/consol_act/emapca1994484/s74.html">state of Tasmania</a> and the <a href="http://gov.wales/topics/health/nhswales/bill/?lang=en">Canadian provinces of Quebec and British Colombia</a> have mandatory HIAs.</p>
<p>HIAs are a pre-decision assessment of the effects of proposed action &ndash; regulations, policy, programmes or projects &ndash; by public bodies on human health. It&rsquo;s a &ldquo;health in all policies&rdquo; approach. HIAs will seek to maximise the positive health effects of the proposed action and will put forward proposals to mitigate the negative effects. The law will apply to, among others, the Welsh government, local authorities and local health boards, and they will be required to publish their HIAs and take account of them when making decisions.</p>
<p>The British Medical Association Cymru Wales has been campaigning for statutory HIAs since 1994: it sees them as <a href="https://www.bma.org.uk/news/media-centre/press-releases/2017/may/public-health-wales-bill">an opportunity</a> to make Wales an international leader in public health &ndash; not just of individuals but of entire communities. In their view, it is an opportunity to address the broader environmental factors which influence health. It is a preventative approach to stop ill health occurring in the first place.</p>
<p><img alt="" src="https://cdn.theconversation.com/files/171481/width754/file-20170530-30169-4uniff.jpg" /> <span class="caption">Wales is no stranger to innovative health legistlation.</span> <span class="attribution"><a class="source" href="https://www.shutterstock.com/image-photo/map-view-wales-362495210?src=WQIK-_oiNZ4svyB1dUBeTg-5-66">sevenMaps7/Shutterstock</a></span></p>
<p>The scale of HIAs can vary but they often involve risk assessment, data analysis and a literature review. Stakeholder involvement, such as the involvement of the medical profession and citizen engagement, is also important.</p>
<p>At present, public bodies in Wales are required to carry out numerous impact assessments on things such as equality &ndash; so why is another one needed? Quite simply because health is not so directly assessed under these as it would be under the planned HIAs.</p>
<p>The Environmental Impact Assessment (EIA), required under European Union law, for example, ensures that planning decisions are made considering environmental effects. Human health considerations are included, but many think that the EIAs don&rsquo;t give sufficient consideration to human environmental health issues. In fact, research carried out by BMA UK has found that <a href="https://books.google.co.uk/books?id=2Tv5AQAAQBAJ&amp;printsec=frontcover&amp;source=gbs_ge_summary_r&amp;cad=0#v=onepage&amp;q&amp;f=false">only 28% of EIAs</a> give consideration to human health hazards.</p>
<h2>Accountable for health</h2>
<p>HIAs also make provision for individuals to challenge public bodies if they think they are not carrying them out effectively: if they can show they are personally affected by a decision they can bring an action for judicial review. If there are implications for the wider public, then an application for judicial review would have to be brought by a representative group.</p>
<p>In addition, HIAs enforcement could be placed under the power of the future generations commissioner &ndash; <a href="https://futuregenerations.wales/sophie-howe/">currently Sophie Howe</a> &ndash; a post created by the aforementioned Well-being of Future Generations Act. The commissioner already has the power to review how public bodies are taking account of the long-term impact of their decisions so it would be a natural fit.</p>
<p>There is no shortage of ambition when it comes to the principles underlying public health legislation passed by the Welsh Assembly. It shows a belief in the ability of law to bring about social change. However, laws can produce unintended consequences as well as beneficial effects. If HIAs are to be a success then there will have to be commitment through political will, effective management at all levels of the HIA process and active participation from stakeholders &ndash; including citizens. Ultimately, they can only be as good as the methods which are used to identify health hazards.</p>
<p>But this could be a great leap forward in protecting the health of the nation, and one which the UK and rest of the world would do well to consider following.</p>
<p><span><a href="https://theconversation.com/profiles/richard-owen-221063">Richard Owen</a>, Associate professor, <em><a href="http://theconversation.com/institutions/swansea-university-2638">Swansea University</a></em></span></p>
<p>&nbsp;<img src="/media/conversation-logo-3ef91e0a2031c5d9350f37bac3cf5273ef6da3660ffaf7c422b9695f09b6f171.png"
alt="The Conversation " title="The Conversation " /></p>
<p>This article was originally published on <a href="http://theconversation.com">The Conversation</a>. Read the <a href="https://theconversation.com/wales-is-leading-the-world-with-its-new-public-health-law-78302">original article</a>.</p>
    </div>

    <ul class="news-item-post-info-container vcard">
        <li class="news-item-post-info author">
           Posted by
            <span class="fn">Delyth Purchase</span>
            &lt;<a class="email" href="mailto:d.purchase@swansea.ac.uk">d.purchase@swansea.ac.uk</a>&gt;
        </li>

        <li class="news-item-post-info">
            <a href="/press-office/news-archive/2017/walesisleadingtheworldwithitsnewpublichealthlaw.php" rel="bookmark">
                <abbr class="published" title="2017-05-31T12:22:00+01:00">Wednesday 31 May 2017 12.22 BST</abbr>
            </a>
        </li>

        <li class="news-item-post-info updated-container">
            <abbr class="updated" title="2017-05-31T11:22:56+01:00">Wednesday 31 May 2017 11.22 BST</abbr>
        </li>

        <li class="news-item-post-info">
        	<span class="fn org">Swansea University</span>
        </li>
    </ul>

</div>

                    </div>

                    <div class="layout-related-items">
                    </div>
                </div>


            </div>

            <!--noindex-->
            <div id="footer" class="layout-footer">
                <ul id="footerLinks" class="footer-links">
<!-- navigation object : SU_footer navigation --><li class="footer-links-list-item"><a href="/the-university/contact/">Contact Us</a></li><li class="footer-links-list-item"><a href="/personnel/jobs/">Jobs</a></li><li class="footer-links-list-item"><a href="/the-university/colleges/">Colleges</a></li><li class="footer-links-list-item"><a href="/press-office/">Press</a></li><li class="footer-links-list-item"><a href="https://www.swansea.ac.uk/about-us/safety-and-security/health-and-safety/">Health &amp; Safety</a></li><li class="footer-links-list-item"><a href="/includes/footer/disclaimer-and-copyright/">Disclaimer &amp; Copyright</a></li><li class="footer-links-list-item"><a href="/includes/footer/site-map/">Site map</a></li><li class="footer-links-list-item"><a href="/includes/footer/privacyandcookies/">Privacy and Cookies</a></li><li class="footer-links-list-item"><a href="http://www.swan.ac.uk/course-search/">Course Search</a></li>
                </ul>

                <div id="footerDisclaimer" class="footer-disclaimer">
                    <p class="footer-disclaimer-text">Swansea University is a registered charity. No. 1138342.</p>
                </div>
            </div>
            <!--endnoindex-->

        </div>

    </div>


<script id="desktop-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <div class="skip-to-content" id="skipToContent">
            {{{ skipToContent }}}
        </div>

        <h1 id="logo" class="logo">
            {{{ logo }}}
        </h1>

        <div id="globalNavWrapper" class="header-links">
            <ul id="globalNav" class="header-links-list">
                {{{ globalNav }}}
            </ul>
        </div>

        <div id="globalSearch" class="global-search-form">
            {{{ globalSearch }}}
        </div>
                    
        <div id="naviBar" class="main-nav">
            <ul id="mainNav" class="main-nav-list">
                {{{ mainNav }}}
            </ul>
        </div>
    </div>

</script>


<script id="mobile-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <span class="layout-menu-bar">
            <a id="layout-menu-bar-toggle" class="layout-menu-bar-toggle" href="#">{{mobile.linksText}}</a>
        </span>

        <a id="logo-link" href="{{mobile.logoLinkHref}}">
            <img class="logo-image" alt="{{mobile.logoAlt}}" src="{{mobile.logoSrc}}" />
        </a>
    </div>

</script>


<script id="desktop-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="secondaryNavWrapper">
             <ul id="secondaryNav" class="content-nav content-nav-items">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="mobile-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="globalNavWrapper">
            {{{globalNav}}}
        </div>

        <div id="naviBar">
            {{{mainNav}}}
        </div>

        <div id="secondaryNavWrapper">
             <ul id="secondaryNav">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="desktop-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">

        <ul class="tabs-item-list">
{{#tabs}}
            <li class="tabs-item-list-tab-item tabs-pod-tabs-tab-heading">
                <a class="tabs-item-list-tab-item-link" href="#">{{ tabHeading }}</a>
            </li>
{{/tabs}}
        </ul>

{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <div class="tabs-pod-tabs-tab-content">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}

    </div>

</script>


<script id="mobile-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">
{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <h3 class="tabs-pod-tabs-tab-heading is-collapsed">
                <a href="#">{{ tabHeading }}</a>
            </h3>
            <div class="tabs-pod-tabs-tab-content" style="display: none">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}
    </div>

</script>


</body>

</html>
