{"id":3073,"date":"2022-03-28T12:42:48","date_gmt":"2022-03-28T12:42:48","guid":{"rendered":"https:\/\/www.msd.at\/en\/?page_id=3073"},"modified":"2023-10-24T08:13:19","modified_gmt":"2023-10-24T08:13:19","slug":"join4care-award-winner-2020-2021","status":"publish","type":"page","link":"https:\/\/www.msd.at\/en\/join4care-award-winner-2020-2021\/","title":{"rendered":"Join4Care Award Winner 2020\/2021"},"content":{"rendered":"<div id=\"mco-title-block-block_1e2e3d9078fdbeae0f0900dc3cd5106b\" \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 2020\/2021 (2nd EDITION)<\/h2>\n\n\t\t\t\t\t\t\t<p class=\"mco-title-block-description\"><p class=\"text-center\">Project title: <strong>:&#8221;Standardized electronic recording of complaints and the quality of life of patients with head \/ neck cancer undergoing radiochemotherapy&#8221;<\/strong><\/p>\n<p>Project leader: <strong>Dr. Prisca Pondorfer Shepherd<\/strong><\/p>\n<p>Institution: <strong>Medical University of Graz<\/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_b2cdb617459c662ac8eaac8fb6fbf1eb\" class=\"article-images-block-wrapper wrapper-story-narrow mccberg-block mb-2\">\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\/2021\/10\/csm_Join4Care_16b882c1e4.jpeg?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\/2021\/10\/csm_Join4Care_16b882c1e4.jpeg?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\/2021\/10\/csm_Join4Care_16b882c1e4.jpeg?w=1076&#038;quality=70&#038;allow_lossy=1\">\n                            <img\n                                data-src=\"https:\/\/www.msd.at\/en\/wp-content\/uploads\/sites\/63\/2021\/10\/csm_Join4Care_16b882c1e4.jpeg?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_b2cdb617459c662ac8eaac8fb6fbf1eb .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_b2cdb617459c662ac8eaac8fb6fbf1eb .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\">Dr. Prisca Pondorfer-Sch\u00e4fer with the entire winning team from the Department of General ENT, Medical University of Graz.<\/p>\n\n\n\n<h1 class=\"wp-block-heading\">Winner project 2020\/2021 &#8220;Standardized electronic recording of complaints and quality of life of patients with head \/ neck cancer undergoing radiochemotherapy&#8221;<\/h1>\n\n\n\n<p>A standardized electronic recording of complaints and quality of life (QoL data) of patients with head \/ neck cancer while undergoing chemoradiotherapy using an app is a significant added value for both doctor and patient. For example, the reduction of documentation work allows more time for the doctor -Patient interactions. The complaints do not necessarily have to be verbalized, which brings great relief for head and neck patients who often have pain when speaking due to side effects from radiation and chemotherapy.<\/p>\n\n\n\n<p>The prize money is to be used to further develop the app and to equip four ambulance waiting room spaces with tablets. This also guarantees IT support for the first two years. &#8220;We are overwhelmed and proud that our project has won among so many innovative projects and we would like to thank everyone who supported and motivated us. We are pleased to be able to further improve the care of oncological ENT patients with this project, &#8220;says Dr. Prisca Pondorfer Shepherd.<\/p>\n\n\n\n<p>&#8220;The MSD Join4Care Award is an important innovation prize because it enables the implementation of patient-oriented projects and thus creates new perspectives for cancer patients,&#8221; said jury member OA Dr. Maximilian Hochmair, Head of the Oncological Day Outpatient Clinic and Day Clinic of Pneumology at the North Hospital &#8211; Floridsdorf Clinic with the winners.<\/p>\n\n\n\n<p>\u201cThis year, too, many innovative projects were submitted for the MSD Join4Care Award. That makes it difficult to select a winner among works of equal rank, but it also shows the potential of patient-oriented projects in Austria, &#8220;affirmed Prim. Univ.-Prof. Dr. Wolfgang Eisterer, Head of the Oncological Center at Klagenfurt Clinic.<\/p>\n\n\n\n<p>\u201cThis year&#8217;s motto for the Join4Care Award was\u201c Patient in focus \u201d. And that is exactly what the patient is in our winning project. A standardized electronic recording of complaints and quality of life is carried out here for patients with ENT cancer who are undergoing radiochemotherapy.<\/p>\n\n\n\n<p>Especially with this group of patients, who often have limited vocal communication possibilities due to the tumor localization, this leads to an early detection of changes as well as to a better assessment of the course of treatment \u201d, summarized Prim. Priv. Doz. Birgit Gr\u00fcnberger, Head of the Department of Internal Medicine, Hematology and Internal Oncology, State Hospital Wiener Neustadt.<\/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>Dr. Prisca Pondorfer-Sch\u00e4fer with the entire winning team from the Department of General ENT, Medical University of Graz. Winner project 2020\/2021 &#8220;Standardized electronic recording of complaints and quality of life of patients with head \/ neck cancer undergoing radiochemotherapy&#8221; A standardized electronic recording of complaints and quality of life (QoL data) of patients with head [&hellip;]<\/p>\n","protected":false},"author":529,"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-3073","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 2020\/2021 - 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-2020-2021\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Join4Care Award Winner 2020\/2021 - MCC\" \/>\n<meta property=\"og:description\" content=\"Dr. Prisca Pondorfer-Sch\u00e4fer with the entire winning team from the Department of General ENT, Medical University of Graz. Winner project 2020\/2021 &#8220;Standardized electronic recording of complaints and quality of life of patients with head \/ neck cancer undergoing radiochemotherapy&#8221; A standardized electronic recording of complaints and quality of life (QoL data) of patients with head [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.msd.at\/en\/join4care-award-winner-2020-2021\/\" \/>\n<meta property=\"og:site_name\" content=\"MCC\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-24T08:13:19+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-2020-2021\\\/\",\"url\":\"https:\\\/\\\/www.msd.at\\\/en\\\/join4care-award-winner-2020-2021\\\/\",\"name\":\"Join4Care Award Winner 2020\\\/2021 - MCC\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.msd.at\\\/en\\\/#website\"},\"datePublished\":\"2022-03-28T12:42:48+00:00\",\"dateModified\":\"2023-10-24T08:13:19+00:00\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.msd.at\\\/en\\\/join4care-award-winner-2020-2021\\\/\"]}]},{\"@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 2020\/2021 - 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-2020-2021\/","og_locale":"en_US","og_type":"article","og_title":"Join4Care Award Winner 2020\/2021 - MCC","og_description":"Dr. Prisca Pondorfer-Sch\u00e4fer with the entire winning team from the Department of General ENT, Medical University of Graz. Winner project 2020\/2021 &#8220;Standardized electronic recording of complaints and quality of life of patients with head \/ neck cancer undergoing radiochemotherapy&#8221; A standardized electronic recording of complaints and quality of life (QoL data) of patients with head [&hellip;]","og_url":"https:\/\/www.msd.at\/en\/join4care-award-winner-2020-2021\/","og_site_name":"MCC","article_modified_time":"2023-10-24T08:13:19+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-2020-2021\/","url":"https:\/\/www.msd.at\/en\/join4care-award-winner-2020-2021\/","name":"Join4Care Award Winner 2020\/2021 - MCC","isPartOf":{"@id":"https:\/\/www.msd.at\/en\/#website"},"datePublished":"2022-03-28T12:42:48+00:00","dateModified":"2023-10-24T08:13:19+00:00","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.msd.at\/en\/join4care-award-winner-2020-2021\/"]}]},{"@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\/3073","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\/529"}],"replies":[{"embeddable":true,"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/comments?post=3073"}],"version-history":[{"count":4,"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/pages\/3073\/revisions"}],"predecessor-version":[{"id":3390,"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/pages\/3073\/revisions\/3390"}],"wp:attachment":[{"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/media?parent=3073"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}