{"id":3373,"date":"2023-10-09T10:44:43","date_gmt":"2023-10-09T10:44:43","guid":{"rendered":"https:\/\/www.msd.at\/en\/?page_id=3373"},"modified":"2023-11-13T13:59:51","modified_gmt":"2023-11-13T13:59:51","slug":"join4care-award-winner-2022-2023","status":"publish","type":"page","link":"https:\/\/www.msd.at\/en\/join4care-award-winner-2022-2023\/","title":{"rendered":"Join4Care Award Winner 2022\/2023"},"content":{"rendered":"<div id=\"mco-title-block-block_8cd30840ce701150611e5621e8d58962\" \n\t class=\"mco-title-block mccberg-block mt-2 mb-2 aligncenter\" \n\t \t >\n\t<div class=\"wrapper\">\n\t\t<div class=\"mco-title-block-content\">\n\t\t\t\n\t\t\t<h2 class=\"mco-title-block-title\">WINNER MSD JOIN4CARE AWARD 2022\/2023 (4th EDITION)<\/h2>\n\n\t\t\t\t\t\t\t<p class=\"mco-title-block-description\"><p>Project title: : <strong>\u201dHeartfish-Uro-Oncology\u201d<\/strong><\/p>\n<p>Project leader: <strong>Dr. David Kiesl<\/strong><\/p>\n<p>Institution: <strong>Ordensklinikum Linz<\/strong><\/p>\n<p>We congratulate the winning team!<\/p>\n<\/p>\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\n<div id=\"article-images-block-block_5f4c41596fd314ca1602adb8bfb50ff1\" class=\"article-images-block-wrapper wrapper-story-narrow mccberg-block\">\n    <section class=\"article-images-block single-article-block\">\n        <!-- Secondary image\/video block -->\n        \n\n        \n        <!-- Primary image\/video block -->\n                    <div class=\"article-images-block-img-wrapper mccberg-play-container\">\n                                                            <picture>\n                            <source media=\"(max-width: 767px)\"\n                                    data-srcset=\"https:\/\/www.msd.at\/en\/wp-content\/uploads\/sites\/63\/2023\/10\/join4care-gewinner-heartfish-e1696848384998.jpg?w=322&#038;quality=70&#038;allow_lossy=1\">\n                            <source media=\"(min-width: 768px) and (max-width: 1199px)\"\n                                    data-srcset=\"https:\/\/www.msd.at\/en\/wp-content\/uploads\/sites\/63\/2023\/10\/join4care-gewinner-heartfish-e1696848384998.jpg?w=656&#038;quality=70&#038;allow_lossy=1\">\n                            <source media=\"(min-width: 1200px)\"\n                                    data-srcset=\"https:\/\/www.msd.at\/en\/wp-content\/uploads\/sites\/63\/2023\/10\/join4care-gewinner-heartfish-e1696848384998.jpg?w=1076&#038;quality=70&#038;allow_lossy=1\">\n                            <img\n                                data-src=\"https:\/\/www.msd.at\/en\/wp-content\/uploads\/sites\/63\/2023\/10\/join4care-gewinner-heartfish-e1696848384998.jpg?w=1076&#038;quality=70&#038;allow_lossy=1\"\n                                alt=\"primary article image\"\n                                class=\"lazyload\"\n                                loading=\"lazy\"\n                            \/>\n                        <\/picture>\n                                                                <\/div>\n                    <\/section>\n<\/div>\n<script>\n\ndocument.addEventListener('DOMContentLoaded', () => {\n    \/\/ Collect all account IDs first and load their scripts\n    const videoPlayers = document.querySelectorAll(\n        \"#article-images-block-block_5f4c41596fd314ca1602adb8bfb50ff1 .article-images-block .article-images-block-img-wrapper video\"\n    );\n    const accountIds = new Set();\n\n    videoPlayers.forEach(player => {\n        const accountId = player.getAttribute('data-account');\n        if (accountId) {\n            accountIds.add(accountId);\n        }\n    });\n\n    \/\/ Load all required Brightcove scripts\n    accountIds.forEach(accountId => {\n        if (!document.querySelector(`script[src*=\"${accountId}\"]`)) {\n            let script = document.createElement(\"script\");\n            script.src = `https:\/\/players.brightcove.net\/${accountId}\/default_default\/index.min.js`;\n            document.body.appendChild(script);\n        }\n    });\n\n    \/\/ Initialize player controls after scripts are loaded\n    [].slice.call(document.querySelectorAll(\n            \"#article-images-block-block_5f4c41596fd314ca1602adb8bfb50ff1 .article-images-block .article-images-block-img-wrapper\"\n        ))\n        .forEach((block) => {\n            const trigger = block.querySelector('.btn-play');\n            const img = block.querySelector('.lazyload');\n            const videoType = block.querySelector('video, iframe')?.tagName.toLowerCase() === 'video' ? 'brightcove' : 'youtube';\n            const player = trigger === null ? block.querySelector('video, iframe') : trigger.nextElementSibling;\n\n            function initializeBrightcovePlayer() {\n                if (window.videojs) {\n                    \/\/ Initialize the Brightcove player\n                    const bcPlayer = videojs(player);\n\n                    \/\/ set video aspect ratio based on video metadata if available, otherwise default to 16:9\n                    const playerContainer = player.closest('.video-js');\n                    playerContainer.style.aspectRatio = player.getAttribute('data-video-id')\n                        ? bcPlayer.videoWidth() \/ bcPlayer.videoHeight()\n                        : 16 \/ 9;\n\n                    bcPlayer.ready(function() {\n                        \/\/ Play video directly\n                        bcPlayer.play();\n\n                        \/\/ Handle any play errors\n                        bcPlayer.on('error', function() {\n                            console.warn('Video playback error:', bcPlayer.error());\n                        });\n                    });\n                } else {\n                    setTimeout(() => initializeBrightcovePlayer(), 100);\n                }\n            }\n\n            function resetZIndexes() {\n                document.querySelectorAll('.article-images-block-img-wrapper').forEach(wrapper => {\n                    const videoContainer = wrapper.querySelector('.video-js')?.parentNode;\n                    if (videoContainer) {\n                        videoContainer.style.zIndex = '1';\n                    }\n                });\n            }\n\n            trigger?.addEventListener('click', (event) => {\n                event.preventDefault();\n\n                if (player.tagName === 'IFRAME') {\n                    player.src = player.dataset.src;\n                    return false;\n                }\n\n                if (player.tagName === 'DIV' || player.tagName === 'VIDEO') {\n                    const videoId = player.getAttribute('data-video-id');\n\n                    if (!videoId) {\n                        return;\n                    }\n\n                    \/\/ Reset z-indexes before showing new player\n                    resetZIndexes();\n\n                    \/\/ Hide play button\n                    trigger.style.display = 'none';\n                    block.style.height = img.offsetHeight + 'px';\n                    img.style.display = 'none';\n                    if (player.parentNode) {\n                        player.parentNode.style.zIndex = 2;\n                    }\n\n                    player.focus();\n\n                    \/\/ Initialize player with shorter timeout since scripts are preloaded\n                    setTimeout(() => {\n                        initializeBrightcovePlayer();\n                    }, 100);\n                }\n                return false;\n            });\n\n            \/\/ Keep keyboard accessibility\n            trigger?.addEventListener('keydown', (event) => {\n                if (event.keyCode === 13 || event.keyCode === 32) {\n                    event.preventDefault();\n                    trigger.click();\n                }\n            });\n\n            const ariaObserver = new MutationObserver((mutationsList) => {\n                mutationsList.forEach(mutation => {\n                    if (mutation.type === 'attributes') {\n                        if (mutation.target.getAttribute('aria-valuenow') === 'NaN') {\n                            mutation.target.setAttribute('aria-valuenow', '0');\n                            ariaObserver.disconnect();\n                        }\n                    }\n                });\n            });\n\n            ariaObserver.observe(block, {\n                subtree: true,\n                attributes: true,\n                attributeFilter: ['aria-valuenow']\n            });\n        });\n});\n<\/script>\n\n\n\n<p class=\"has-text-align-center\">Andrea Kurz, Business Unit Director Oncology, MSD Ina Herzer, CEO, MSD, Winner: Dr. David Kiesl. Prim.a Priv.-Doz.in Dr.in Birgit Gr\u00fcnberger, Univ.-Prof. Dr. Philipp Jost<\/p>\n\n\n\n<h1 class=\"wp-block-heading\">Winning project 2022\/2023 \u201cHeartfish-Uro-Oncology\u201d<\/h1>\n\n\n\n<p>Integration of multimodal concepts and telemedical options of the ambulant setting in patient care.<\/p>\n\n\n\n<p>Especially patients with cancer do not achieve the recommended level of physical activity. This results in therapy-related side effects such as fatigue, depression or lymphedema during cancer treatments. Regular physical activity can reduce cardiovascular events and thus improve patients&#8217; quality of life during and after therapy.<\/p>\n\n\n\n<p>&#8220;In our project, we want to support patients with their cancer therapy. The developed health app with targeted exercise programs aims to increase physical activity and health literacy among patients, prevents possible side effects, and increases willingness and adherence to therapy.\u201d The goal here is to use the developed health app with targeted exercise programs to increase physical activity and health literacy among patients, thus preventing possible side effects and increasing willingness and adherence to therapy,&#8221; explains Dr. David Kiesl, an internist at the Ordensklinikum Linz and a sports medicine specialist at the Institute for Sports- and Health Medicine.<\/p>\n\n\n\n<p>International guidelines also recommend daily exercise to increase quality of life. About 60% of the healthy population in Europe barely reach the activity level recommended by the WHO. With cancer, there is a further 60% decrease in activity. Health apps and peer support offer an excellent opportunity in current times to further promote physical activity in everyday life.<\/p>\n\n\n\n<p>The developed &#8220;Heartfish App&#8221; provides oncological, psycho-oncological and dietary content. Activity programs can be individually adapted to patients in order to achieve and maintain the recommended activity level during therapy,&#8221; described Dr. David Kiesl in detail. He continues, &#8220;The 12-week course program represents a digitalized version of oncology education and supportive therapy care. In this way, multimodal concepts based on new telemedical possibilities can also be implemented in patient care.&#8221;<\/p>\n\n\n\n<p>The project, led by specialist Dr. David Kiesl and in collaboration with Krebshilfe Ober\u00f6sterreich, aims to improve the effectiveness of lifestyle therapy and provide innovative telemedical care for uro-oncologic patients with advanced cancer types. This enables the digital integration of oncological supportive concepts through an app called &#8220;Heartfish&#8221;, which provides patients with multimodal care and promotes their health literacy.<\/p>\n\n\n\n<p>&#8220;Especially uro-oncological patients with advanced cancer type need stability and continuous medical care during ongoing therapy, also independent of clinical visits,&#8221; emphasizes Dr. Kiesl and further highlights, &#8220;It is an incredible pleasure for us to now be able to further implement our project with the support of MSD and thus improve and innovatively support care during cancer therapy.&#8221;<\/p>\n\n\n\n<p class=\"has-text-align-right\" style=\"font-size:11px\">AT-NON-01500, Created October 2023<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Andrea Kurz, Business Unit Director Oncology, MSD Ina Herzer, CEO, MSD, Winner: Dr. David Kiesl. Prim.a Priv.-Doz.in Dr.in Birgit Gr\u00fcnberger, Univ.-Prof. Dr. Philipp Jost Winning project 2022\/2023 \u201cHeartfish-Uro-Oncology\u201d Integration of multimodal concepts and telemedical options of the ambulant setting in patient care. Especially patients with cancer do not achieve the recommended level of physical activity. [&hellip;]<\/p>\n","protected":false},"author":883,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"bdl_company_name":[],"bdl_item_external_link":[],"editor_notices":[],"footnotes":""},"class_list":["post-3373","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Join4Care Award Winner 2022\/2023 - MCC<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.msd.at\/en\/join4care-award-winner-2022-2023\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Join4Care Award Winner 2022\/2023 - MCC\" \/>\n<meta property=\"og:description\" content=\"Andrea Kurz, Business Unit Director Oncology, MSD Ina Herzer, CEO, MSD, Winner: Dr. David Kiesl. Prim.a Priv.-Doz.in Dr.in Birgit Gr\u00fcnberger, Univ.-Prof. Dr. Philipp Jost Winning project 2022\/2023 \u201cHeartfish-Uro-Oncology\u201d Integration of multimodal concepts and telemedical options of the ambulant setting in patient care. Especially patients with cancer do not achieve the recommended level of physical activity. [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.msd.at\/en\/join4care-award-winner-2022-2023\/\" \/>\n<meta property=\"og:site_name\" content=\"MCC\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-13T13:59:51+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.msd.at\\\/en\\\/join4care-award-winner-2022-2023\\\/\",\"url\":\"https:\\\/\\\/www.msd.at\\\/en\\\/join4care-award-winner-2022-2023\\\/\",\"name\":\"Join4Care Award Winner 2022\\\/2023 - MCC\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.msd.at\\\/en\\\/#website\"},\"datePublished\":\"2023-10-09T10:44:43+00:00\",\"dateModified\":\"2023-11-13T13:59:51+00:00\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.msd.at\\\/en\\\/join4care-award-winner-2022-2023\\\/\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.msd.at\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.msd.at\\\/en\\\/\",\"name\":\"MCC\",\"description\":\"Just another vip2-msd.com site\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.msd.at\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Join4Care Award Winner 2022\/2023 - MCC","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.msd.at\/en\/join4care-award-winner-2022-2023\/","og_locale":"en_US","og_type":"article","og_title":"Join4Care Award Winner 2022\/2023 - MCC","og_description":"Andrea Kurz, Business Unit Director Oncology, MSD Ina Herzer, CEO, MSD, Winner: Dr. David Kiesl. Prim.a Priv.-Doz.in Dr.in Birgit Gr\u00fcnberger, Univ.-Prof. Dr. Philipp Jost Winning project 2022\/2023 \u201cHeartfish-Uro-Oncology\u201d Integration of multimodal concepts and telemedical options of the ambulant setting in patient care. Especially patients with cancer do not achieve the recommended level of physical activity. [&hellip;]","og_url":"https:\/\/www.msd.at\/en\/join4care-award-winner-2022-2023\/","og_site_name":"MCC","article_modified_time":"2023-11-13T13:59:51+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.msd.at\/en\/join4care-award-winner-2022-2023\/","url":"https:\/\/www.msd.at\/en\/join4care-award-winner-2022-2023\/","name":"Join4Care Award Winner 2022\/2023 - MCC","isPartOf":{"@id":"https:\/\/www.msd.at\/en\/#website"},"datePublished":"2023-10-09T10:44:43+00:00","dateModified":"2023-11-13T13:59:51+00:00","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.msd.at\/en\/join4care-award-winner-2022-2023\/"]}]},{"@type":"WebSite","@id":"https:\/\/www.msd.at\/en\/#website","url":"https:\/\/www.msd.at\/en\/","name":"MCC","description":"Just another vip2-msd.com site","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.msd.at\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"acf":[],"_links":{"self":[{"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/pages\/3373","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/users\/883"}],"replies":[{"embeddable":true,"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/comments?post=3373"}],"version-history":[{"count":8,"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/pages\/3373\/revisions"}],"predecessor-version":[{"id":3407,"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/pages\/3373\/revisions\/3407"}],"wp:attachment":[{"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/media?parent=3373"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}