{"id":3333,"date":"2023-09-14T07:42:12","date_gmt":"2023-09-14T07:42:12","guid":{"rendered":"https:\/\/www.msd.at\/en\/?page_id=3333"},"modified":"2023-10-24T08:11:11","modified_gmt":"2023-10-24T08:11:11","slug":"join4care-award-winner-2021-2022","status":"publish","type":"page","link":"https:\/\/www.msd.at\/en\/join4care-award-winner-2021-2022\/","title":{"rendered":"Join4Care Award Winner 2021\/2022"},"content":{"rendered":"<div id=\"mco-title-block-block_24790d49f474648150c188f78536b5ed\" \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 2021\/2022 (3rd 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;Integration of initial and transitional psycho-oncology care in the outpatient setting&#8221;<\/strong><\/p>\n<p>Project leader: <strong>Univ.-Prof. Dr. Alexander Gaiger, Dr. Elisabeth Zeilinger<\/strong><\/p>\n<p>Institution: <strong>Medical University of Vienna<\/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_2fa67e688ac9b420476bf36d5c889cc7\" 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\/2023\/09\/Join4Care-gewinner-2022-gros.jpg?w=322\">\n                            <source media=\"(min-width: 768px) and (max-width: 1199px)\"\n                                    data-srcset=\"https:\/\/www.msd.at\/en\/wp-content\/uploads\/sites\/63\/2023\/09\/Join4Care-gewinner-2022-gros.jpg?w=656\">\n                            <source media=\"(min-width: 1200px)\"\n                                    data-srcset=\"https:\/\/www.msd.at\/en\/wp-content\/uploads\/sites\/63\/2023\/09\/Join4Care-gewinner-2022-gros.jpg?w=1076\">\n                            <img\n                                data-src=\"https:\/\/www.msd.at\/en\/wp-content\/uploads\/sites\/63\/2023\/09\/Join4Care-gewinner-2022-gros.jpg?w=1076\"\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_2fa67e688ac9b420476bf36d5c889cc7 .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_2fa67e688ac9b420476bf36d5c889cc7 .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\">Simone Lubowitzki MA, Dr. Elisabeth Zeilinger, Prof. Dr. Alexander Gaiger<\/p>\n\n\n\n<h1 class=\"wp-block-heading\">Winning project 2021\/2022 &#8220;Integration of initial and transitional psycho-oncology care in the outpatient setting&#8221;.<\/h1>\n\n\n\n<p>The current project at the Outpatient Clinic for Oncology and Hematology at the Medical University of Vienna aims to record psychosocial stress using standardized, established screening procedures and to integrate it into medical treatment.<\/p>\n\n\n\n<p>Thus, psychologically stressed outpatients should be offered on-site psycho-oncological counseling. This is intended to intercept acute crises, clarify the need for longer-term psycho-oncological treatment, and provide bridging care until referrals can be made to private practice or special care facilities.<\/p>\n\n\n\n<p>The award money will be used to integrate two part-time psychosocial professionals into the team for at least one year, who could provide psycho-oncology diagnosis and treatment. In addition, at least one person in training will be given an opportunity to work within the project, thus contributing to the high-quality training of young psycho-oncological professionals and thus to the future availability of qualified professionals in this field.<\/p>\n\n\n\n<p>&#8220;Psycho-oncological treatment places in private practice are often associated with long waiting times. During this period, mental health can deteriorate drastically and thus affect the patient&#8217;s quality of life, compliance and chances of survival,&#8221; says the team led by Univ.-Prof. Dr. Alexander Gaiger, summarizing the problem.<\/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>Simone Lubowitzki MA, Dr. Elisabeth Zeilinger, Prof. Dr. Alexander Gaiger Winning project 2021\/2022 &#8220;Integration of initial and transitional psycho-oncology care in the outpatient setting&#8221;. The current project at the Outpatient Clinic for Oncology and Hematology at the Medical University of Vienna aims to record psychosocial stress using standardized, established screening procedures and to integrate it [&hellip;]<\/p>\n","protected":false},"author":527,"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-3333","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.9.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Join4Care Award Winner 2021\/2022 - 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-2021-2022\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Join4Care Award Winner 2021\/2022 - MCC\" \/>\n<meta property=\"og:description\" content=\"Simone Lubowitzki MA, Dr. Elisabeth Zeilinger, Prof. Dr. Alexander Gaiger Winning project 2021\/2022 &#8220;Integration of initial and transitional psycho-oncology care in the outpatient setting&#8221;. The current project at the Outpatient Clinic for Oncology and Hematology at the Medical University of Vienna aims to record psychosocial stress using standardized, established screening procedures and to integrate it [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.msd.at\/en\/join4care-award-winner-2021-2022\/\" \/>\n<meta property=\"og:site_name\" content=\"MCC\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-24T08:11:11+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-2021-2022\/\",\"url\":\"https:\/\/www.msd.at\/en\/join4care-award-winner-2021-2022\/\",\"name\":\"Join4Care Award Winner 2021\/2022 - MCC\",\"isPartOf\":{\"@id\":\"https:\/\/www.msd.at\/en\/#website\"},\"datePublished\":\"2023-09-14T07:42:12+00:00\",\"dateModified\":\"2023-10-24T08:11:11+00:00\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.msd.at\/en\/join4care-award-winner-2021-2022\/\"]}]},{\"@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\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Join4Care Award Winner 2021\/2022 - 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-2021-2022\/","og_locale":"en_US","og_type":"article","og_title":"Join4Care Award Winner 2021\/2022 - MCC","og_description":"Simone Lubowitzki MA, Dr. Elisabeth Zeilinger, Prof. Dr. Alexander Gaiger Winning project 2021\/2022 &#8220;Integration of initial and transitional psycho-oncology care in the outpatient setting&#8221;. The current project at the Outpatient Clinic for Oncology and Hematology at the Medical University of Vienna aims to record psychosocial stress using standardized, established screening procedures and to integrate it [&hellip;]","og_url":"https:\/\/www.msd.at\/en\/join4care-award-winner-2021-2022\/","og_site_name":"MCC","article_modified_time":"2023-10-24T08:11:11+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-2021-2022\/","url":"https:\/\/www.msd.at\/en\/join4care-award-winner-2021-2022\/","name":"Join4Care Award Winner 2021\/2022 - MCC","isPartOf":{"@id":"https:\/\/www.msd.at\/en\/#website"},"datePublished":"2023-09-14T07:42:12+00:00","dateModified":"2023-10-24T08:11:11+00:00","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.msd.at\/en\/join4care-award-winner-2021-2022\/"]}]},{"@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":"required name=search_term_string"}],"inLanguage":"en-US"}]}},"acf":[],"_links":{"self":[{"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/pages\/3333","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\/527"}],"replies":[{"embeddable":true,"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/comments?post=3333"}],"version-history":[{"count":10,"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/pages\/3333\/revisions"}],"predecessor-version":[{"id":3389,"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/pages\/3333\/revisions\/3389"}],"wp:attachment":[{"href":"https:\/\/www.msd.at\/en\/wp-json\/wp\/v2\/media?parent=3333"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}