{"id":4022,"date":"2024-11-08T16:27:47","date_gmt":"2024-11-08T21:27:47","guid":{"rendered":"https:\/\/giving.georgetown.edu\/give\/?page_id=4022"},"modified":"2025-10-21T11:30:09","modified_gmt":"2025-10-21T15:30:09","slug":"yearend1","status":"publish","type":"page","link":"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/","title":{"rendered":"Make a Gift to Georgetown University Medical Center | 202412"},"content":{"rendered":"\n<body id=\"imff\">\n  <div id=\"iysgh\" class=\"gjs-row\">\n    <div id=\"i0rwx\" class=\"gjs-cell\">\n      <div id=\"i1uzf\">\n        <b id=\"ifio8\">Amplify your impact\n        <\/b>\n        <br\/>this holiday season, make a year-end gift that counts!\n      <\/div>\n    <\/div>\n  <\/div>\n  <div id=\"i7qer\" class=\"gjs-row\">\n    <div id=\"ip00e\" class=\"gjs-cell\">\n      <img decoding=\"async\" id=\"iqquh\" src=\"https:\/\/i.countdownmail.com\/3pa61t.gif\"\/>\n    <\/div>\n  <\/div>\n  <div class=\"gjs-row\" id=\"ipqsc\">\n    <div class=\"gjs-cell\" id=\"ibtjt\">\n      <div class=\"gjs-row\" id=\"izxh4\">\n        <div class=\"gjs-cell\" id=\"ik5xw\">\n          <div id=\"ivl3l\">Give generously and advance\u00a0life-changing research\n          <\/div>\n          <div id=\"ipjct\">At Georgetown University Medical Center, we\u2019re committed to advancing innovations in research and patient care because we believe everyone deserves the ability to thrive and live their healthiest lives.\n          <\/div>\n          <div id=\"i6eeg\">As a nonprofit organization, Georgetown relies on the generosity of the community\u2026and friends like you. Please give this holiday season to push vital work forward and help us provide better outcomes for our families, friends and neighbors around the world. \n            <span id=\"iqed6\">\n              <a href=\"https:\/\/secure.advancement.georgetown.edu\/s\/1686\/18\/giving.aspx?sid=1686&#038;gid=4&#038;pgid=3975&#038;cid=5816&#038;dids=680.144&#038;bledit=1&#038;sort=1&#038;unit=69&#038;appealcode=\" id=\"iyz3v\">Please make a year-end, tax-deductible gift now<\/a><\/span>.\n          <\/div>\n          <div class=\"gjs-row\" id=\"i2wzh\">\n            <div id=\"give-form\" class=\"gjs-cell\"><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 3.1 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n\n\/* ]]> *\/\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform_legacy_markup_wrapper gform-theme--no-framework' data-form-theme='legacy' data-form-index='0' id='gform_wrapper_61' >\n                        <div class='gform_heading'>\n                            <p class='gform_description'><\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_61'  action='\/give\/wp-json\/wp\/v2\/pages\/4022' data-formid='61' novalidate>\n                        <div class='gform-body gform_body'><ul id='gform_fields_61' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_61_2\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio dollar-amount-radio-button field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >Amount<\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_61_2'>\n\t\t\t<li class='gchoice gchoice_61_2_0'>\n\t\t\t\t<input name='input_2' type='radio' value='500'  id='choice_61_2_0'    \/>\n\t\t\t\t<label for='choice_61_2_0' id='label_61_2_0' class='gform-field-label gform-field-label--type-inline'>$500<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_61_2_1'>\n\t\t\t\t<input name='input_2' type='radio' value='250'  id='choice_61_2_1'    \/>\n\t\t\t\t<label for='choice_61_2_1' id='label_61_2_1' class='gform-field-label gform-field-label--type-inline'>$250<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_61_2_2'>\n\t\t\t\t<input name='input_2' type='radio' value='100' checked='checked' id='choice_61_2_2'    \/>\n\t\t\t\t<label for='choice_61_2_2' id='label_61_2_2' class='gform-field-label gform-field-label--type-inline'>$100<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_61_2_3'>\n\t\t\t\t<input name='input_2' type='radio' value='50'  id='choice_61_2_3'    \/>\n\t\t\t\t<label for='choice_61_2_3' id='label_61_2_3' class='gform-field-label gform-field-label--type-inline'>$50<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_61_2_4'>\n\t\t\t\t<input name='input_2' type='radio' value='25'  id='choice_61_2_4'    \/>\n\t\t\t\t<label for='choice_61_2_4' id='label_61_2_4' class='gform-field-label gform-field-label--type-inline'>$25<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_61_2_5'>\n\t\t\t\t<input name='input_2' type='radio' value='gf_other_choice'  id='choice_61_2_5'   onfocus=\"jQuery(this).next('input').focus();\" \/>\n\t\t\t\t<input class='small' id='input_61_2_other' name='input_2_other' type='text' value='Other' aria-label='Other' onfocus='jQuery(this).prev(\"input\")[0].click(); if(jQuery(this).val() == \"Other\") { jQuery(this).val(\"\"); }' onblur='if(jQuery(this).val().replace(\" \", \"\") == \"\") { jQuery(this).val(\"Other\"); }'   \/>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_61_16\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h5 class=\"form-title\" >Become a Leadership Partner today:<\/h5><\/li><li id=\"field_61_15\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full dollar-amount-radio-buttons field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >Amount<\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_61_15'>\n\t\t\t<li class='gchoice gchoice_61_15_0'>\n\t\t\t\t<input name='input_15' type='radio' value='1000'  id='choice_61_15_0'    \/>\n\t\t\t\t<label for='choice_61_15_0' id='label_61_15_0' class='gform-field-label gform-field-label--type-inline'>$1000<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_61_15_1'>\n\t\t\t\t<input name='input_15' type='radio' value='gf_other_choice'  id='choice_61_15_1'   onfocus=\"jQuery(this).next('input').focus();\" \/>\n\t\t\t\t<input class='small' id='input_61_15_other' name='input_15_other' type='text' value='Other' aria-label='Other' onfocus='jQuery(this).prev(\"input\")[0].click(); if(jQuery(this).val() == \"Other\") { jQuery(this).val(\"\"); }' onblur='if(jQuery(this).val().replace(\" \", \"\") == \"\") { jQuery(this).val(\"Other\"); }'   \/>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_61_9\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_61_9'>Your Gift Will Support<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_9' id='input_61_9' class='medium gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Georgetown University Medical Center' >Georgetown University Medical Center<\/option><\/select><\/div><\/li><li id=\"field_61_4\" class=\"gfield gfield--type-hidden gfield--input-type-hidden gform_hidden field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class='ginput_container ginput_container_text'><input name='input_4' id='input_61_4' type='hidden' class='gform_hidden'  aria-invalid=\"false\" value='25WN007978' \/><\/div><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_61' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Continue'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_61' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_61' id='gform_theme_61' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_61' id='gform_style_settings_61' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_61' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='61' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_61' value='WyJbXSIsIjhhNzk4MjY1NmFiNTU3M2JmYmNjZTQzY2IwMmY4ZGEwIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_61' id='gform_target_page_number_61' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_61' id='gform_source_page_number_61' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n gform.initializeOnLoaded( function() {gformInitSpinner( 61, 'data:image\/gif;base64,R0lGODlhAQABAAD\/ACwAAAAAAQABAAACADs=', true );jQuery('#gform_ajax_frame_61').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_61');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_61').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_61').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_61').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_61').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_61').val();gformInitSpinner( 61, 'data:image\/gif;base64,R0lGODlhAQABAAD\/ACwAAAAAAQABAAACADs=', true );jQuery(document).trigger('gform_page_loaded', [61, current_page]);window['gf_submitting_61'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_61').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [61]);window['gf_submitting_61'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_61').text());}else{jQuery('#gform_61').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"61\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_61\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_61\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_61\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 61, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} ); \n\/* ]]> *\/\n<\/script>\n\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n    <div class=\"gjs-cell\" id=\"ifhwc\">\n      <div class=\"gjs-row\" id=\"i1vjv\">\n        <div class=\"gjs-cell\" id=\"iflz8\">\n          <div id=\"i1epf\">Help make groundbreaking medical discoveries possible. \n          <\/div>\n        <\/div>\n      <\/div>\n      <img decoding=\"async\" id=\"is0dp\" src=\"https:\/\/georgetown-university-medical-center.s3.us-east-1.amazonaws.com\/lp\/2024.12\/header-image.jpg\"\/>\n      <div id=\"iu84w\">Georgetown University Medical Center depends on your support to ensure we continue our pursuit of innovations that lead to better outcomes for patients, such as enabling technologies.\n      <\/div>\n      <div id=\"ihfls\">\u201cThese are technologies that allow us to perform the same spine and orthopedic procedures, but more efficiently, with greater accuracy, and less collateral damage to nearby structures,\u201d says Jay Khanna, MD, chair and professor of orthopedic surgery for the Department of Orthopedic Surgery at MedStar Georgetown University Hospital. \u201cFor example, in joint replacement surgery, we\u2019re now using robotics to help make our implant placement more precise, accurate and reproducible with better overall success.\u201d\n      <\/div>\n      <div id=\"icet2\">\n       \n          <a href=\"https:\/\/secure.advancement.georgetown.edu\/s\/1686\/18\/giving.aspx?sid=1686&#038;gid=4&#038;pgid=3975&#038;cid=5816&#038;dids=680.144&#038;bledit=1&#038;sort=1&#038;unit=69&#038;appealcode=25WN007978\" id=\"i58t2\">Help power more important research like Dr. Khanna\u2019s<\/a>\n\n       at Georgetown with a generous year-end, tax-deductible gift. \n      <\/div>\n      <div id=\"i666h\">\u201cYou can be assured that your gift is being used to advance the field and support our research, students, and faculty,\u201d says Dr. Khanna.\u00a0\n      <\/div>\n      <div id=\"idkle\">Thank you for sharing help and health this holiday season.\n      <\/div>\n    <\/div>\n  <\/div>\n  <div class=\"gjs-row\" id=\"i9php\">\n    <div class=\"gjs-cell\" id=\"iio11\">\n    <\/div>\n  <\/div>\n  <div id=\"id6rh\" class=\"gjs-row\">\n    <div id=\"iouvf\" class=\"gjs-cell\">\n      <img decoding=\"async\" id=\"i7myg\" src=\"https:\/\/georgetown-university-medical-center.s3.us-east-1.amazonaws.com\/lp\/2024.12\/heart-hands%402x.png\"\/>\n      <div id=\"iuxmh\">Partner with Us Today\n      <\/div>\n      <div id=\"inlj2\">One hundred percent of your gift goes directly to critical research and innovations in patient care. \n        <a href=\"https:\/\/secure.advancement.georgetown.edu\/s\/1686\/18\/giving.aspx?sid=1686&#038;gid=4&#038;pgid=3975&#038;cid=5816&#038;dids=680.144&#038;bledit=1&#038;sort=1&#038;unit=69&#038;appealcode=25WN007978\" id=\"i06n7\">Please give generously<\/a>!\n      <\/div>\n      <a href=\"https:\/\/secure.advancement.georgetown.edu\/s\/1686\/18\/giving.aspx?sid=1686&#038;gid=4&#038;pgid=3975&#038;cid=5816&#038;dids=680.144&#038;bledit=1&#038;sort=1&#038;unit=69&#038;appealcode=25WN007978\" id=\"ie3oa\"><div id=\"im3rf\" draggable=\"true\">\n        <b id=\"i8fr1\">GIVE NOW\n        <\/b>\n        <\/div><\/a>\n    <\/div>\n  <\/div>\n  <div class=\"gjs-row\" id=\"iaee3\">\n    <div class=\"gjs-cell\">\n    <\/div>\n  <\/div>\n<\/body>\n\n\n\n<link rel=\"stylesheet\" href=\"https:\/\/georgetown-lombardi.s3.amazonaws.com\/lp\/gravity-dwi.min.css\">\n<link rel=\"stylesheet\" href=\"https:\/\/georgetown-university-medical-center.s3.amazonaws.com\/lp\/2024.12\/index.min.css\">\n\n<style>*{font-family:\"Helvetica Neue\",Helvetica,Arial,sans-serif!important;line-height:1.25em}#ic7zn img{width:auto!important}#iw5w0v,#iy5svk,#iuxmh,#i1epf,#ifio8,#i1uzf{font-family:\"adobe-caslon-pro\",Georgia,\"Times New Roman\",serif!important}.desktop-logo img{max-width:40px;margin-top:0;margin-right:10px}.desktop-logo #site-title a{font-size:25.6px;color:#fff!important;font-family:\"adobe-caslon-pro\",Georgia,\"Times New Roman\",serif!important;font-weight:500;font-style:normal;line-height:30.72px;letter-spacing:-.25px;}#site-title2 a{font-size:25.6px;font-family:\"adobe-caslon-pro\",Georgia,\"Times New Roman\",serif!important;font-weight:500;font-style:normal;line-height:30.72px;letter-spacing:-.25px;}.new-css img{float:left;margin-right:10px;margin-left:10px;width:auto!important;}\n\n\n#icr1d a, #inlj2 a,#iyz3v,#i58t2{\n\ntext-decoration:underline!important;\n}\n\n#iqquh{max-width:800px!important;}\n<\/style>\n\n\n\n<script>\ndocument.querySelector('.desktop-logo img').src = 'https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/georgetown-abbr-2x.png';\ndocument.querySelector('.desktop-logo').innerHTML += '<span id=\"site-title\"><a href=\"https:\/\/gumc.georgetown.edu\" class=\"site-name\">Georgetown University Medical Center<\/a><\/span>';\n\/\/document.querySelector('#iv2rj').innerHTML += '<div class=\"new-css\" ><img decoding=\"async\" style=\"max-width:500px;\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_1200x300-1.png\" alt=\"Georgetown University\"><\/div>';\ndocument.querySelectorAll('nav .menu-item a')[1].href=\"https:\/\/secure.advancement.georgetown.edu\/s\/1686\/18\/giving.aspx?sid=1686&gid=4&pgid=3975&cid=5816&dids=680.144&bledit=1&sort=1&unit=69&appealcode=25WN007978\";\n<\/script>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Amplify your impact this holiday season, make a year-end gift that counts! Give generously and advance\u00a0life-changing research At Georgetown University Medical Center, we\u2019re committed to advancing innovations in research and [&hellip;]<\/p>\n","protected":false},"author":885,"featured_media":0,"parent":3232,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page_landing-page.php","meta":{"_acf_changed":false,"footnotes":"","_links_to":"","_links_to_target":""},"class_list":["post-4022","page","type-page","status-publish","hentry"],"acf":{"share_link":"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/?utm_source=do&utm_medium=email&utm_campaign=dw899_outreach","activate_citymap":false,"chart_embed":false,"contact_button_text":"","contact_email":"","mapbox_embed":false,"override_nav_logo":true,"page_header_appearance":"header-default","unit_nav_desktop_logo_override":{"ID":3915,"id":3915,"title":"GUMC_White","filename":"GUMC_White.png","filesize":545944,"url":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White.png","link":"https:\/\/giving.georgetown.edu\/give\/gumc\/givingtuesday1\/gumc_white\/","alt":"","author":"885","description":"","caption":"","name":"gumc_white","status":"inherit","uploaded_to":3849,"date":"2024-10-04 15:33:09","modified":"2024-10-04 15:33:09","menu_order":0,"mime_type":"image\/png","type":"image","subtype":"png","icon":"https:\/\/giving.georgetown.edu\/give\/wp-includes\/images\/media\/default.png","width":5100,"height":2100,"sizes":{"thumbnail":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-150x150.png","thumbnail-width":150,"thumbnail-height":150,"medium":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-300x124.png","medium-width":300,"medium-height":124,"medium_large":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-768x316.png","medium_large-width":768,"medium_large-height":316,"large":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1024x422.png","large-width":1024,"large-height":422,"1536x1536":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1536x632.png","1536x1536-width":1536,"1536x1536-height":632,"2048x2048":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-2048x843.png","2048x2048-width":2048,"2048x2048-height":843,"gform-image-choice-sm":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White.png","gform-image-choice-sm-width":300,"gform-image-choice-sm-height":124,"gform-image-choice-md":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White.png","gform-image-choice-md-width":400,"gform-image-choice-md-height":165,"gform-image-choice-lg":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White.png","gform-image-choice-lg-width":600,"gform-image-choice-lg-height":247,"16_9_background_light":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1600x900.png","16_9_background_light-width":1600,"16_9_background_light-height":900,"16_9_background_dark":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1600x900.png","16_9_background_dark-width":1600,"16_9_background_dark-height":900,"post-thumbnail":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1200x1200.png","post-thumbnail-width":1200,"post-thumbnail-height":1200,"size_1800_1800":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1800x1800.png","size_1800_1800-width":1800,"size_1800_1800-height":1800,"size_1050_1050":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1050x1050.png","size_1050_1050-width":1050,"size_1050_1050-height":1050,"size_2000_1125":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-2000x1125.png","size_2000_1125-width":2000,"size_2000_1125-height":1125,"size_1050_591":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1050x591.png","size_1050_591-width":1050,"size_1050_591-height":591,"size_1600_900":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1600x900.png","size_1600_900-width":1600,"size_1600_900-height":900,"size_1200_450":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1200x450.png","size_1200_450-width":1200,"size_1200_450-height":450}},"unit_nav_mobile_logo_override":{"ID":3915,"id":3915,"title":"GUMC_White","filename":"GUMC_White.png","filesize":545944,"url":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White.png","link":"https:\/\/giving.georgetown.edu\/give\/gumc\/givingtuesday1\/gumc_white\/","alt":"","author":"885","description":"","caption":"","name":"gumc_white","status":"inherit","uploaded_to":3849,"date":"2024-10-04 15:33:09","modified":"2024-10-04 15:33:09","menu_order":0,"mime_type":"image\/png","type":"image","subtype":"png","icon":"https:\/\/giving.georgetown.edu\/give\/wp-includes\/images\/media\/default.png","width":5100,"height":2100,"sizes":{"thumbnail":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-150x150.png","thumbnail-width":150,"thumbnail-height":150,"medium":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-300x124.png","medium-width":300,"medium-height":124,"medium_large":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-768x316.png","medium_large-width":768,"medium_large-height":316,"large":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1024x422.png","large-width":1024,"large-height":422,"1536x1536":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1536x632.png","1536x1536-width":1536,"1536x1536-height":632,"2048x2048":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-2048x843.png","2048x2048-width":2048,"2048x2048-height":843,"gform-image-choice-sm":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White.png","gform-image-choice-sm-width":300,"gform-image-choice-sm-height":124,"gform-image-choice-md":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White.png","gform-image-choice-md-width":400,"gform-image-choice-md-height":165,"gform-image-choice-lg":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White.png","gform-image-choice-lg-width":600,"gform-image-choice-lg-height":247,"16_9_background_light":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1600x900.png","16_9_background_light-width":1600,"16_9_background_light-height":900,"16_9_background_dark":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1600x900.png","16_9_background_dark-width":1600,"16_9_background_dark-height":900,"post-thumbnail":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1200x1200.png","post-thumbnail-width":1200,"post-thumbnail-height":1200,"size_1800_1800":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1800x1800.png","size_1800_1800-width":1800,"size_1800_1800-height":1800,"size_1050_1050":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1050x1050.png","size_1050_1050-width":1050,"size_1050_1050-height":1050,"size_2000_1125":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-2000x1125.png","size_2000_1125-width":2000,"size_2000_1125-height":1125,"size_1050_591":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1050x591.png","size_1050_591-width":1050,"size_1050_591-height":591,"size_1600_900":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1600x900.png","size_1600_900-width":1600,"size_1600_900-height":900,"size_1200_450":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2024\/10\/GUMC_White-1200x450.png","size_1200_450-width":1200,"size_1200_450-height":450}},"unit_nav_collapsed_logo_override":false},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Make a Gift to Georgetown University Medical Center | 202412 - Give<\/title>\n<meta name=\"description\" content=\"Amplify your impact this holiday season, make a year-end gift that counts! Give generously and advance\u00a0life-changing research At Georgetown University Medical Center, we\u2019re committed to advancing innovations in research and [&hellip;]\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Make a Gift to Georgetown University Medical Center | 202412 - Give\" \/>\n<meta property=\"og:description\" content=\"Amplify your impact this holiday season, make a year-end gift that counts! Give generously and advance\u00a0life-changing research At Georgetown University Medical Center, we\u2019re committed to advancing innovations in research and [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/\" \/>\n<meta property=\"og:site_name\" content=\"Give\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-21T15:30:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i.countdownmail.com\/3pa61t.gif\" \/>\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:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/\",\"url\":\"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/\",\"name\":\"Make a Gift to Georgetown University Medical Center | 202412 - Give\",\"isPartOf\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i.countdownmail.com\/3pa61t.gif\",\"datePublished\":\"2024-11-08T21:27:47+00:00\",\"dateModified\":\"2025-10-21T15:30:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/#primaryimage\",\"url\":\"https:\/\/i.countdownmail.com\/3pa61t.gif\",\"contentUrl\":\"https:\/\/i.countdownmail.com\/3pa61t.gif\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/my.giving.georgetown.edu\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"2023 October GUMC Evergreen TSM_Landing Page\",\"item\":\"https:\/\/giving.georgetown.edu\/give\/gumc\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Make a Gift to Georgetown University Medical Center | 202412\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/#website\",\"url\":\"https:\/\/giving.georgetown.edu\/give\/\",\"name\":\"Give\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/giving.georgetown.edu\/give\/?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":"Make a Gift to Georgetown University Medical Center | 202412 - Give","description":"Amplify your impact this holiday season, make a year-end gift that counts! Give generously and advance\u00a0life-changing research At Georgetown University Medical Center, we\u2019re committed to advancing innovations in research and [&hellip;]","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:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/","og_locale":"en_US","og_type":"article","og_title":"Make a Gift to Georgetown University Medical Center | 202412 - Give","og_description":"Amplify your impact this holiday season, make a year-end gift that counts! Give generously and advance\u00a0life-changing research At Georgetown University Medical Center, we\u2019re committed to advancing innovations in research and [&hellip;]","og_url":"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/","og_site_name":"Give","article_modified_time":"2025-10-21T15:30:09+00:00","og_image":[{"url":"https:\/\/i.countdownmail.com\/3pa61t.gif","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/","url":"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/","name":"Make a Gift to Georgetown University Medical Center | 202412 - Give","isPartOf":{"@id":"https:\/\/giving.georgetown.edu\/give\/#website"},"primaryImageOfPage":{"@id":"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/#primaryimage"},"image":{"@id":"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/#primaryimage"},"thumbnailUrl":"https:\/\/i.countdownmail.com\/3pa61t.gif","datePublished":"2024-11-08T21:27:47+00:00","dateModified":"2025-10-21T15:30:09+00:00","breadcrumb":{"@id":"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/#primaryimage","url":"https:\/\/i.countdownmail.com\/3pa61t.gif","contentUrl":"https:\/\/i.countdownmail.com\/3pa61t.gif"},{"@type":"BreadcrumbList","@id":"https:\/\/giving.georgetown.edu\/give\/gumc\/yearend1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/my.giving.georgetown.edu\/"},{"@type":"ListItem","position":2,"name":"2023 October GUMC Evergreen TSM_Landing Page","item":"https:\/\/giving.georgetown.edu\/give\/gumc\/"},{"@type":"ListItem","position":3,"name":"Make a Gift to Georgetown University Medical Center | 202412"}]},{"@type":"WebSite","@id":"https:\/\/giving.georgetown.edu\/give\/#website","url":"https:\/\/giving.georgetown.edu\/give\/","name":"Give","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/giving.georgetown.edu\/give\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages\/4022","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/users\/885"}],"replies":[{"embeddable":true,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/comments?post=4022"}],"version-history":[{"count":25,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages\/4022\/revisions"}],"predecessor-version":[{"id":4064,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages\/4022\/revisions\/4064"}],"up":[{"embeddable":true,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages\/3232"}],"wp:attachment":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/media?parent=4022"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}