<!doctype html>
<html lang="en-CA" class="blog hfeed">

<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<meta name="format-detection" content="telephone=no">
	<!-- Google tag (gtag.js) -->
	<script async src="https://www.googletagmanager.com/gtag/js?id=G-WFRNEMTV12"></script>
	<script>
		window.dataLayer = window.dataLayer || [];

		function gtag() {
			dataLayer.push(arguments);
		}
		gtag('js', new Date());

		gtag('config', 'G-WFRNEMTV12');
	</script>
	<script type="text/javascript">
		window.ajaxurl = 'https://healthresearchbc.ca/wp-admin/admin-ajax.php';
	</script>
	<link rel="profile" href="https://gmpg.org/xfn/11">
	<link href="https://healthresearchbc.ca/wp-content/themes/msfhr/assets/img/favicon.ico" rel="shortcut icon">

	<title>Health Research BC</title>
<meta name='robots' content='max-image-preview:large' />
<link rel="alternate" type="application/rss+xml" title="Health Research BC &raquo; Feed" href="https://healthresearchbc.ca/feed/" />
<link rel="alternate" type="application/rss+xml" title="Health Research BC &raquo; Comments Feed" href="https://healthresearchbc.ca/comments/feed/" />
<script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/healthresearchbc.ca\/wp-includes\/js\/wp-emoji.js?ver=6.4.3","twemoji":"https:\/\/healthresearchbc.ca\/wp-includes\/js\/twemoji.js?ver=6.4.3"}};
/**
 * @output wp-includes/js/wp-emoji-loader.js
 */

/**
 * Emoji Settings as exported in PHP via _print_emoji_detection_script().
 * @typedef WPEmojiSettings
 * @type {object}
 * @property {?object} source
 * @property {?string} source.concatemoji
 * @property {?string} source.twemoji
 * @property {?string} source.wpemoji
 * @property {?boolean} DOMReady
 * @property {?Function} readyCallback
 */

/**
 * Support tests.
 * @typedef SupportTests
 * @type {object}
 * @property {?boolean} flag
 * @property {?boolean} emoji
 */

/**
 * IIFE to detect emoji support and load Twemoji if needed.
 *
 * @param {Window} window
 * @param {Document} document
 * @param {WPEmojiSettings} settings
 */
( function wpEmojiLoader( window, document, settings ) {
	if ( typeof Promise === 'undefined' ) {
		return;
	}

	var sessionStorageKey = 'wpEmojiSettingsSupports';
	var tests = [ 'flag', 'emoji' ];

	/**
	 * Checks whether the browser supports offloading to a Worker.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @returns {boolean}
	 */
	function supportsWorkerOffloading() {
		return (
			typeof Worker !== 'undefined' &&
			typeof OffscreenCanvas !== 'undefined' &&
			typeof URL !== 'undefined' &&
			URL.createObjectURL &&
			typeof Blob !== 'undefined'
		);
	}

	/**
	 * @typedef SessionSupportTests
	 * @type {object}
	 * @property {number} timestamp
	 * @property {SupportTests} supportTests
	 */

	/**
	 * Get support tests from session.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @returns {?SupportTests} Support tests, or null if not set or older than 1 week.
	 */
	function getSessionSupportTests() {
		try {
			/** @type {SessionSupportTests} */
			var item = JSON.parse(
				sessionStorage.getItem( sessionStorageKey )
			);
			if (
				typeof item === 'object' &&
				typeof item.timestamp === 'number' &&
				new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds.
				typeof item.supportTests === 'object'
			) {
				return item.supportTests;
			}
		} catch ( e ) {}
		return null;
	}

	/**
	 * Persist the supports in session storage.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @param {SupportTests} supportTests Support tests.
	 */
	function setSessionSupportTests( supportTests ) {
		try {
			/** @type {SessionSupportTests} */
			var item = {
				supportTests: supportTests,
				timestamp: new Date().valueOf()
			};

			sessionStorage.setItem(
				sessionStorageKey,
				JSON.stringify( item )
			);
		} catch ( e ) {}
	}

	/**
	 * Checks if two sets of Emoji characters render the same visually.
	 *
	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
	 * scope. Everything must be passed by parameters.
	 *
	 * @since 4.9.0
	 *
	 * @private
	 *
	 * @param {CanvasRenderingContext2D} context 2D Context.
	 * @param {string} set1 Set of Emoji to test.
	 * @param {string} set2 Set of Emoji to test.
	 *
	 * @return {boolean} True if the two sets render the same.
	 */
	function emojiSetsRenderIdentically( context, set1, set2 ) {
		// Cleanup from previous test.
		context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
		context.fillText( set1, 0, 0 );
		var rendered1 = new Uint32Array(
			context.getImageData(
				0,
				0,
				context.canvas.width,
				context.canvas.height
			).data
		);

		// Cleanup from previous test.
		context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
		context.fillText( set2, 0, 0 );
		var rendered2 = new Uint32Array(
			context.getImageData(
				0,
				0,
				context.canvas.width,
				context.canvas.height
			).data
		);

		return rendered1.every( function ( rendered2Data, index ) {
			return rendered2Data === rendered2[ index ];
		} );
	}

	/**
	 * Determines if the browser properly renders Emoji that Twemoji can supplement.
	 *
	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
	 * scope. Everything must be passed by parameters.
	 *
	 * @since 4.2.0
	 *
	 * @private
	 *
	 * @param {CanvasRenderingContext2D} context 2D Context.
	 * @param {string} type Whether to test for support of "flag" or "emoji".
	 * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
	 *
	 * @return {boolean} True if the browser can render emoji, false if it cannot.
	 */
	function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) {
		var isIdentical;

		switch ( type ) {
			case 'flag':
				/*
				 * Test for Transgender flag compatibility. Added in Unicode 13.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly (white flag emoji + transgender symbol).
				 */
				isIdentical = emojiSetsRenderIdentically(
					context,
					'\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence
					'\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space
				);

				if ( isIdentical ) {
					return false;
				}

				/*
				 * Test for UN flag compatibility. This is the least supported of the letter locale flags,
				 * so gives us an easy test for full support.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly ([U] + [N]).
				 */
				isIdentical = emojiSetsRenderIdentically(
					context,
					'\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points
					'\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space
				);

				if ( isIdentical ) {
					return false;
				}

				/*
				 * Test for English flag compatibility. England is a country in the United Kingdom, it
				 * does not have a two letter locale code but rather a five letter sub-division code.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]).
				 */
				isIdentical = emojiSetsRenderIdentically(
					context,
					// as the flag sequence
					'\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F',
					// with each code point separated by a zero-width space
					'\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F'
				);

				return ! isIdentical;
			case 'emoji':
				/*
				 * Why can't we be friends? Everyone can now shake hands in emoji, regardless of skin tone!
				 *
				 * To test for Emoji 14.0 support, try to render a new emoji: Handshake: Light Skin Tone, Dark Skin Tone.
				 *
				 * The Handshake: Light Skin Tone, Dark Skin Tone emoji is a ZWJ sequence combining 🫱 Rightwards Hand,
				 * 🏻 Light Skin Tone, a Zero Width Joiner, 🫲 Leftwards Hand, and 🏿 Dark Skin Tone.
				 *
				 * 0x1FAF1 == Rightwards Hand
				 * 0x1F3FB == Light Skin Tone
				 * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or
				 * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji.
				 * 0x1FAF2 == Leftwards Hand
				 * 0x1F3FF == Dark Skin Tone.
				 *
				 * When updating this test for future Emoji releases, ensure that individual emoji that make up the
				 * sequence come from older emoji standards.
				 */
				isIdentical = emojiSetsRenderIdentically(
					context,
					'\uD83E\uDEF1\uD83C\uDFFB\u200D\uD83E\uDEF2\uD83C\uDFFF', // as the zero-width joiner sequence
					'\uD83E\uDEF1\uD83C\uDFFB\u200B\uD83E\uDEF2\uD83C\uDFFF' // separated by a zero-width space
				);

				return ! isIdentical;
		}

		return false;
	}

	/**
	 * Checks emoji support tests.
	 *
	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
	 * scope. Everything must be passed by parameters.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @param {string[]} tests Tests.
	 * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification.
	 * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
	 *
	 * @return {SupportTests} Support tests.
	 */
	function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) {
		var canvas;
		if (
			typeof WorkerGlobalScope !== 'undefined' &&
			self instanceof WorkerGlobalScope
		) {
			canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement.
		} else {
			canvas = document.createElement( 'canvas' );
		}

		var context = canvas.getContext( '2d', { willReadFrequently: true } );

		/*
		 * Chrome on OS X added native emoji rendering in M41. Unfortunately,
		 * it doesn't work when the font is bolder than 500 weight. So, we
		 * check for bold rendering support to avoid invisible emoji in Chrome.
		 */
		context.textBaseline = 'top';
		context.font = '600 32px Arial';

		var supports = {};
		tests.forEach( function ( test ) {
			supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically );
		} );
		return supports;
	}

	/**
	 * Adds a script to the head of the document.
	 *
	 * @ignore
	 *
	 * @since 4.2.0
	 *
	 * @param {string} src The url where the script is located.
	 *
	 * @return {void}
	 */
	function addScript( src ) {
		var script = document.createElement( 'script' );
		script.src = src;
		script.defer = true;
		document.head.appendChild( script );
	}

	settings.supports = {
		everything: true,
		everythingExceptFlag: true
	};

	// Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired.
	var domReadyPromise = new Promise( function ( resolve ) {
		document.addEventListener( 'DOMContentLoaded', resolve, {
			once: true
		} );
	} );

	// Obtain the emoji support from the browser, asynchronously when possible.
	new Promise( function ( resolve ) {
		var supportTests = getSessionSupportTests();
		if ( supportTests ) {
			resolve( supportTests );
			return;
		}

		if ( supportsWorkerOffloading() ) {
			try {
				// Note that the functions are being passed as arguments due to minification.
				var workerScript =
					'postMessage(' +
					testEmojiSupports.toString() +
					'(' +
					[
						JSON.stringify( tests ),
						browserSupportsEmoji.toString(),
						emojiSetsRenderIdentically.toString()
					].join( ',' ) +
					'));';
				var blob = new Blob( [ workerScript ], {
					type: 'text/javascript'
				} );
				var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } );
				worker.onmessage = function ( event ) {
					supportTests = event.data;
					setSessionSupportTests( supportTests );
					worker.terminate();
					resolve( supportTests );
				};
				return;
			} catch ( e ) {}
		}

		supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically );
		setSessionSupportTests( supportTests );
		resolve( supportTests );
	} )
		// Once the browser emoji support has been obtained from the session, finalize the settings.
		.then( function ( supportTests ) {
			/*
			 * Tests the browser support for flag emojis and other emojis, and adjusts the
			 * support settings accordingly.
			 */
			for ( var test in supportTests ) {
				settings.supports[ test ] = supportTests[ test ];

				settings.supports.everything =
					settings.supports.everything && settings.supports[ test ];

				if ( 'flag' !== test ) {
					settings.supports.everythingExceptFlag =
						settings.supports.everythingExceptFlag &&
						settings.supports[ test ];
				}
			}

			settings.supports.everythingExceptFlag =
				settings.supports.everythingExceptFlag &&
				! settings.supports.flag;

			// Sets DOMReady to false and assigns a ready function to settings.
			settings.DOMReady = false;
			settings.readyCallback = function () {
				settings.DOMReady = true;
			};
		} )
		.then( function () {
			return domReadyPromise;
		} )
		.then( function () {
			// When the browser can not render everything we need to load a polyfill.
			if ( ! settings.supports.everything ) {
				settings.readyCallback();

				var src = settings.source || {};

				if ( src.concatemoji ) {
					addScript( src.concatemoji );
				} else if ( src.wpemoji && src.twemoji ) {
					addScript( src.twemoji );
					addScript( src.wpemoji );
				}
			}
		} );
} )( window, document, window._wpemojiSettings );
</script>
<style id='wp-emoji-styles-inline-css'>

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='https://healthresearchbc.ca/wp-includes/css/dist/block-library/style.css?ver=6.4.3' media='all' />
<style id='classic-theme-styles-inline-css'>
/**
 * These rules are needed for backwards compatibility.
 * They should match the button element rules in the base theme.json file.
 */
.wp-block-button__link {
	color: #ffffff;
	background-color: #32373c;
	border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */

	/* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */
	box-shadow: none;
	text-decoration: none;

	/* The extra 2px are added to size solids the same as the outline versions.*/
	padding: calc(0.667em + 2px) calc(1.333em + 2px);

	font-size: 1.125em;
}

.wp-block-file__button {
	background: #32373c;
	color: #ffffff;
	text-decoration: none;
}

</style>
<style id='global-styles-inline-css'>
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
</style>
<link rel='stylesheet' id='msfhr-style-css' href='https://healthresearchbc.ca/wp-content/themes/msfhr/style.css?ver=1.0.1' media='all' />
<link rel='stylesheet' id='wpjb-glyphs-css' href='https://healthresearchbc.ca/wp-content/plugins/wpjobboard/public/css/wpjb-glyphs.css?ver=5.9.3' media='all' />
<link rel='stylesheet' id='wpjb-css-css' href='https://healthresearchbc.ca/wp-content/plugins/wpjobboard/public/css/frontend.css?ver=5.9.3' media='all' />
<script src="https://healthresearchbc.ca/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script>
<script src="https://healthresearchbc.ca/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script>
<script src="https://healthresearchbc.ca/wp-content/themes/msfhr/js/modals.js" id="modals-js"></script>
<script src="https://healthresearchbc.ca/wp-content/themes/msfhr/js/scripts.js" id="scripts-js"></script>
<script src="https://healthresearchbc.ca/wp-content/themes/msfhr/js/pagination.js" id="pagination-js"></script>
<script id="wpjb-js-js-extra">
var WpjbData = {"no_jobs_found":"No job listings found","no_resumes_found":"No resumes found","load_x_more":"Load %d more","date_format":"Y\/m\/d","datepicker_date_format":"yy\/mm\/dd","max_date":"9999\/12\/31"};
</script>
<script src="https://healthresearchbc.ca/wp-content/plugins/wpjobboard/public/js/frontend.js?ver=5.9.3" id="wpjb-js-js"></script>
<link rel="https://api.w.org/" href="https://healthresearchbc.ca/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://healthresearchbc.ca/xmlrpc.php?rsd" />
<style>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>	<meta name="google-site-verification" content="tpAGL5EH2iMSUFlnpSFkKVcQQHbo1eVAADjVF93bgOo" />
	<!-- <meta name="twitter:image" content=""> -->
	</head>

<body class="blog hfeed">

	<!-- Google Tag Manager (noscript) -->
	<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NZRTZHF" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
	<!-- End Google Tag Manager (noscript) -->
		<div id="page" class="site">
		<div class="button-scroll-top">
    <img src="https://healthresearchbc.ca/wp-content/themes/msfhr/assets/img/top.svg" />
</div>

<script>
    jQuery(document).ready(function($) {
        function showButton() {
            if (document.body.scrollTop > 850 || document.documentElement.scrollTop > 850) {
                $('.button-scroll-top').css('display', 'flex');
            } else {
                $('.button-scroll-top').css('display', 'none');
            }
        }

        $(document).on('scroll', function(e) {
            showButton();
        })

        $('.button-scroll-top').on('click', function() {
            window.scrollTo({
                top: 0,
                behavior: 'smooth'
            })
        })
    });
</script>

		<header id="masthead" class="site-header">
			<nav class="top-navigation inner-spacing">
				<!-- Site Logo Section -->
				<div class="container-header-logo">
					<a href="https://healthresearchbc.ca">
						<img class="header-logo" src="https://healthresearchbc.ca/wp-content/themes/msfhr/assets/img/HealthResearchBC_logo.svg" />
					</a>
				</div>

				<ul id="top-menu" class="top-menu"><li id="menu-item-18847" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-18847"><a target="_blank" rel="noopener" href="https://healthresearchbc.smartsimple.ca/s_Login.jsp">Applynet</a></li>
<li id="menu-item-18848" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18848"><a href="https://healthresearchbc.ca/contact/">Contact us</a></li>
<li role="button" aria-role="button" class="search-icon-header"><img src="https://healthresearchbc.ca/wp-content/themes/msfhr/assets/img/search.svg"/></li></ul>			</nav>

			<nav id="site-navigation" class="main-navigation">
				<div class="container-header-logo">
					<a href="https://healthresearchbc.ca">
						<img class="header-logo--scroll" src="https://healthresearchbc.ca/wp-content/themes/msfhr/assets/img/new_logo_small.svg" />
					</a>
				</div>

				<!-- Mobile Icon Section -->
				<div class="container-icon-menu">
					<img id="icon-menu__open" class="icon-menu" src="https://healthresearchbc.ca/wp-content/themes/msfhr/assets/img/bars.svg" />
					<img id="icon-menu__close" class="icon-menu el-hidden" src="https://healthresearchbc.ca/wp-content/themes/msfhr/assets/img/times.svg" />
				</div>

				<!-- Nav Items -->
				<div class="container-main-menu el-hidden"><ul id="primary-menu" class="main-menu"><li id="menu-item-706" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-706"><a>About</a>
<ul class="sub-menu el-hidden">
	<li id="menu-item-709" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-709"><a href="https://healthresearchbc.ca/about/">About Us</a></li>
	<li id="menu-item-22495" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22495"><a href="https://healthresearchbc.ca/about/our-strategy/">Our Strategy</a></li>
	<li id="menu-item-1043" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1043"><a href="https://healthresearchbc.ca/about/leadership/">Leadership</a></li>
	<li id="menu-item-16980" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16980"><a href="https://healthresearchbc.ca/about/careers">Careers</a></li>
</ul>
</li>
<li id="menu-item-27454" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-27454"><a>Our Commitments</a>
<ul class="sub-menu el-hidden">
	<li id="menu-item-27449" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-27449"><a href="https://healthresearchbc.ca/our-commitments-equity-diversity-inclusion-edi/">Equity, Diversity and Inclusion</a></li>
	<li id="menu-item-27448" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-27448"><a href="https://healthresearchbc.ca/our-commitments-indigenous-reconciliation/">Indigenous Reconciliation</a></li>
</ul>
</li>
<li id="menu-item-13435" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-13435"><a>Funding</a>
<ul class="sub-menu el-hidden">
	<li id="menu-item-13436" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13436"><a href="https://healthresearchbc.ca/funding/">Funding Programs</a></li>
	<li id="menu-item-13536" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13536"><a href="https://healthresearchbc.ca/funding/peer-review-process/">Peer Review Process</a></li>
	<li id="menu-item-16172" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16172"><a href="https://healthresearchbc.ca/funding/awards-database/">Awards Database</a></li>
</ul>
</li>
<li id="menu-item-40" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-40"><a>ENABLING RESEARCH</a>
<ul class="sub-menu el-hidden">
	<li id="menu-item-18408" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-18408"><a href="/bc-support-unit/about-us/">BC SUPPORT Unit</a>
	<ul class="sub-menu el-hidden">
		<li id="menu-item-18409" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18409"><a href="https://healthresearchbc.ca/bc-support-unit/about-us/">About us</a></li>
		<li id="menu-item-27655" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-27655"><a href="https://healthresearchbc.ca/bc-support-unit/info-and-resources/">Info and Resources</a></li>
		<li id="menu-item-27656" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-27656"><a href="https://healthresearchbc.ca/bc-support-unit/data/">Data</a></li>
		<li id="menu-item-27657" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-27657"><a href="https://healthresearchbc.ca/bc-support-unit/learning-health-systems/">Learning health systems</a></li>
		<li id="menu-item-27659" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-27659"><a href="https://healthresearchbc.ca/bc-support-unit/patient-partner-engagement/">Patient partner engagement</a></li>
		<li id="menu-item-27658" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-27658"><a href="https://healthresearchbc.ca/bc-support-unit/projects/">Projects</a></li>
		<li id="menu-item-18777" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18777"><a href="https://healthresearchbc.ca/bc-support-unit/news/">News</a></li>
	</ul>
</li>
	<li id="menu-item-18412" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-18412"><a href="/clinical-trials-bc/about-us">Clinical Trials BC</a>
	<ul class="sub-menu el-hidden">
		<li id="menu-item-18413" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18413"><a href="https://healthresearchbc.ca/clinical-trials-bc/about-us/">About us</a></li>
		<li id="menu-item-18445" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18445"><a href="https://healthresearchbc.ca/clinical-trials-bc/why-bc/">Why BC</a></li>
		<li id="menu-item-18468" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18468"><a href="https://healthresearchbc.ca/clinical-trials-bc/info-and-resources/">Info and resources</a></li>
		<li id="menu-item-18481" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18481"><a href="https://healthresearchbc.ca/clinical-trials-bc/continuing-education-and-training/">Continuing education and training</a></li>
		<li id="menu-item-19326" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-19326"><a href="https://healthresearchbc.ca/clinical-trials-bc/clinical-trials-provincial-job-board/">Clinical trials provincial job board</a></li>
		<li id="menu-item-18779" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18779"><a href="https://healthresearchbc.ca/clinical-trials-bc/news/">News</a></li>
	</ul>
</li>
	<li id="menu-item-18500" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-18500"><a href="/research-ethics-bc/about-us">Research Ethics BC</a>
	<ul class="sub-menu el-hidden">
		<li id="menu-item-18503" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18503"><a href="https://healthresearchbc.ca/research-ethics-bc/about-us/">About us</a></li>
		<li id="menu-item-18502" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18502"><a href="https://healthresearchbc.ca/research-ethics-bc/why-research-ethics/">Why research ethics?</a></li>
		<li id="menu-item-18501" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18501"><a href="https://healthresearchbc.ca/research-ethics-bc/info-and-resources/">Info and resources</a></li>
		<li id="menu-item-18783" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18783"><a href="https://healthresearchbc.ca/research-ethics-bc/news/">News</a></li>
	</ul>
</li>
	<li id="menu-item-19005" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-19005"><a href="https://healthresearchbc.ca/knowledge-translation/">Knowledge Translation</a></li>
	<li id="menu-item-19382" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-19382"><a href="https://healthresearchbc.ca/initiatives/">Initiatives</a></li>
	<li id="menu-item-18994" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18994"><a href="https://healthresearchbc.ca/covid-19-research-response/">COVID-19 Research Response</a></li>
</ul>
</li>
<li id="menu-item-13078" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-13078"><a>Partnerships</a>
<ul class="sub-menu el-hidden">
	<li id="menu-item-13079" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13079"><a href="https://healthresearchbc.ca/partnership/">About Partnerships</a></li>
	<li id="menu-item-13606" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13606"><a href="https://healthresearchbc.ca/opportunities-for-researchers/">For Researchers</a></li>
	<li id="menu-item-13263" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13263"><a href="https://healthresearchbc.ca/prospective-partners/">For Organizations</a></li>
	<li id="menu-item-13088" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13088"><a href="https://healthresearchbc.ca/our-partners/">Our Partners</a></li>
</ul>
</li>
<li id="menu-item-23034" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-23034"><a>News &#038; Events</a>
<ul class="sub-menu el-hidden">
	<li id="menu-item-38" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-38"><a href="https://healthresearchbc.ca/news/">News</a></li>
	<li id="menu-item-23035" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-23035"><a href="https://healthresearchbc.ca/events/">Events</a></li>
</ul>
</li>
<li class="search-icon-header el-mobile"><img src="https://healthresearchbc.ca/wp-content/themes/msfhr/assets/img/search.svg" /></li><li class="menu-item menu-item-type-custom menu-item-object-custom el-mobile menu-item-applynet"><a href="https://healthresearchbc.smartsimple.ca/s_Login.jsp">Applynet</a></li><li class="menu-item menu-item-type-custom menu-item-object-custom el-mobile"><a href="https://healthresearchbc.ca/contact">Contact Us</a></li></ul></div>			</nav>
		</header>
		<!-- Modal Search -->
<div class="modal modal-search purple-bg">
  <img class="close-btn js-popup-close" src="https://healthresearchbc.ca/wp-content/themes/msfhr/assets/img/close-white.svg">
  <div class="modal-content">
    <form method="get" role="search" id="searchform" class="navbar-search" action="https://healthresearchbc.ca/">
	<input type="text" name="s" id="s" value="" class="search-query" placeholder="Type and press ‘enter’ to search">
</form>
  </div>
</div>

	<main id="primary" class="site-main">

		
<section class="no-results not-found">
	<div class="page-header">
		<h1 class="m-heading">Nothing Found</h1>
	</div><!-- .page-header -->

	<div class="page-content">
		<p>Sorry, but nothing matched your search terms. Please try again with some different keywords.</p>
	</div><!-- .page-content -->
</section><!-- .no-results -->

	</main><!-- #main -->


<aside id="secondary" class="widget-area">
	</aside><!-- #secondary -->
</main>

<footer class="footer site-footer inner-spacing">
      <div class="footer--logo">
              <div>
          <img src="https://healthresearchbc.ca/wp-content/uploads/2022/05/Health-Research-BC-logo-reverse.svg" alt="" />
          <p>info@healthresearchbc.ca</p>
          <span>604.730.8322</span> <span>| 1.866.673.4722</span>
        </div>
      
              <div>
                      <div>
              <p class="footer-copy">&copy; 2024 Michael Smith Health Research BC | All rights reserved</p>
            </div>
                  </div>
          </div>
  

      <div class="footer--links">
              <a href="https://healthresearchbc.ca/about" target="">About</a>
              <a href="https://healthresearchbc.ca/funding" target="">Funding</a>
              <a href="https://healthresearchbc.ca/bc-support-unit/about-us" target="">BC SUPPORT Unit</a>
              <a href="https://healthresearchbc.ca/clinical-trials-bc/about-us" target="">Clinical Trials BC</a>
              <a href="https://healthresearchbc.ca/research-ethics-bc/about-us" target="">Research Ethics BC</a>
              <a href="https://healthresearchbc.ca/news" target="">Latest news</a>
              <a href="https://healthresearchbc.ca/about/careers" target="">Careers</a>
              <a href="https://healthresearchbc.ca/contact" target="">Contact us</a>
              <a href="https://healthresearchbc.ca/media-toolkit/" target="">Media toolkit</a>
          </div>
  
  <div class="footer--sm">
    <div id="mc_embed_signup">
  <div id="mc-embed-mailing">
    <a href="http://eepurl.com/hKF8O5" target="_blank">
      Subscribe to receive updates
    </a>
  </div>
</div>

          <div>
                  <div>
                          <a href="https://twitter.com/HlthResearchBC" target="_blank">
                <?xml version="1.0" encoding="utf-8"?><svg width="28px" height="28px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 28 28" style="enable-background:new 0 0 28 28;" xml:space="preserve"><g><path class="st0" d="M0,0v28h28V0H0z M17.8,23.7l-5.1-7.5l-6.4,7.5H4.6l7.4-8.6L4.6,4.3h5.6l4.9,7.1l6.1-7.1h1.7l-7,8.2h0l7.6,11.1H17.8z"/><polygon class="st0" points="14.2,12.5 9.4,5.6 6.8,5.6 12.8,14.1 13.5,15.2 13.5,15.2 18.6,22.5 21.2,22.5 14.9,13.5 	"/></g></svg>              </a>
            
                          <a href="https://linkedin.com/company/michael-smith-foundation-for-health-research/" target="_blank">
                <?xml version="1.0" encoding="UTF-8"?>
<svg width="28px" height="28px" viewBox="0 0 28 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Footer" transform="translate(-1008.000000, -169.000000)" fill="#FFFFFF" fill-rule="nonzero"><g id="linkedin" transform="translate(1008.000000, 169.000000)"><path d="M0,0 L0,27.9999332 L27.9999332,27.9999332 L27.9999332,0 L0,0 Z M8.46250424,23.9999428 L4.31248972,23.9999428 L4.31248972,10.6374868 L8.46872981,10.6374868 L8.46872981,23.9999428 L8.46250424,23.9999428 Z M6.38749698,8.81247899 C5.05626236,8.81247899 3.98125271,7.73124377 3.98125271,6.40623473 C3.98125271,5.08122568 5.05626236,3.99999046 6.38749698,3.99999046 C7.71250603,3.99999046 8.79374124,5.08122568 8.79374124,6.40623473 C8.79374124,7.73746935 7.7187316,8.81247899 6.38749698,8.81247899 Z M24.0186805,23.9999428 L19.868727,23.9999428 L19.868727,17.4999583 C19.868727,15.9499742 19.8374771,13.9562045 17.7124822,13.9562045 C15.5499507,13.9562045 15.2187137,15.6437005 15.2187137,17.3874708 L15.2187137,23.9999428 L11.0686992,23.9999428 L11.0686992,10.6374868 L15.0499519,10.6374868 L15.0499519,12.4624947 L15.1062262,12.4624947 C15.6624382,11.4124484 17.0186972,10.3062498 19.0374302,10.3062498 C23.2374324,10.3062498 24.0186805,13.074981 24.0186805,16.674948 L24.0186805,23.9999428 Z" id="Shape"></path></g></g></g></svg>              </a>
            
            
                          <a href="https://www.youtube.com/channel/UCMkDO3u49iR1TMets8c1dMw" target="_blank">
                <?xml version="1.0" encoding="UTF-8"?>
<svg width="28px" height="28px" viewBox="0 0 28 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Footer" transform="translate(-1108.000000, -169.000000)" fill="#FFFFFF"><path d="M1136,169 L1136,197 L1108,197 L1108,169 L1136,169 Z M1118,177 L1118,188.842122 L1128.48276,182.921204 L1118,177 Z" id="Youtube"></path></g></g></svg>              </a>
                      </div>
              </div>
    
          <div>
                  <div>
            <p class="footer-description">As a provincial organization, our work extends across many Indigenous lands and territories throughout British Columbia. We acknowledge with respect and humility that our Vancouver offices are located on the traditional and unceded territories of the xʷməθkʷəy̓əm (Musqueam), Skwxwú7mesh (Squamish), and səl̓ilwətaɁɬ (Tsleil-Waututh) Nations.</p>
          </div>
              </div>
      </div>
</footer>

</div>

<style id='core-block-supports-inline-css'>
/**
 * Core styles: block-supports
 */

</style>
<script src="https://healthresearchbc.ca/wp-content/themes/msfhr/js/navigation.js?ver=1.0.0" id="msfhr-navigation-js"></script>
<script src="https://healthresearchbc.ca/wp-content/themes/msfhr/js/misc.js?ver=1.0.0" id="msfhr-misc-js"></script>
<script src="https://healthresearchbc.ca/wp-includes/js/jquery/ui/core.js?ver=1.13.2" id="jquery-ui-core-js"></script>
<script src="https://healthresearchbc.ca/wp-includes/js/jquery/ui/accordion.js?ver=1.13.2" id="jquery-ui-accordion-js"></script>
<script src="https://healthresearchbc.ca/wp-includes/js/jquery/ui/tabs.js?ver=1.13.2" id="jquery-ui-tabs-js"></script>

</body>

</html>
