<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<base href="https://foundation.aarp.org/site/" />
<title>

Thank you - AARP Foundation
</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta name="Keywords" content=" " />
<meta name="Description" content="" />
<meta name="Robots" content="index, follow" />










<script type="text/javascript" src="../yui3/yui/yui-min.js"></script><noscript>&nbsp;</noscript>
<script type="text/javascript" src="../js/convio/modules.js?version=2.9"></script><noscript>&nbsp;</noscript>
<script type="text/javascript">
var Y = YUI({base: '../yui3/',
insertBefore: 'yui_marker_loader_css', // insert all YUI module css before customstyle so it can be overridden
debug: false, 
modules: getModules('../', 'convio', true)});
</script><noscript>&nbsp;</noscript>


<script type="text/javascript" src="../js/utils.js"></script><noscript>&nbsp;</noscript>

<script type="text/javascript" src="../js/obs_comp_rollup.js"></script><noscript>&nbsp;</noscript>


<link href="../css/themes/default.css" rel="stylesheet" type="text/css" />
<link href="../css/themes/alphacube.css" rel="stylesheet" type="text/css"/>


<link href="../css/UserGlobalStyle.css" rel="stylesheet" type="text/css" />




<link rel="stylesheet" type="text/css" id="yui_marker_loader_css" />
<link href="../css/CustomStyle.css" rel="stylesheet" type="text/css" />
<link href="../css/CustomWysiwygStyle.css" rel="stylesheet" type="text/css" />






<meta name="CnvHeaderVersion" content="v5.0" />


<script src="//cdn.optimizely.com/js/541084631.js"></script>

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<meta name="viewport" content="initial-scale=1.0, width=device-width">

<meta property="og:site_name" content="AARP">
<meta property="og:type" content="article">
<meta property="og:image" content="http://cdn.aarp.net/etc/aarp/statics/global/img/logos/aarp_50x50.imgcache.rev1384362683028.png">
<meta property="fb:app_id" content="114175878660191">

<meta name="robots" content="index,follow" />

<link rel="icon" href='https://secure.aarp.org/etc/aarp/statics/global/img/favicon.ico' type="image/vnd.microsoft.icon"/>
<link rel="shortcut icon" href='https://secure.aarp.org/etc/aarp/statics/global/img/favicon.ico' type="image/vnd.microsoft.icon"/>
<link rel="stylesheet" media="screen" href='https://secure.aarp.org/etc/aarp/statics/global.rev14508.css' type="text/css"/>
<link rel="stylesheet" media="screen" href='https://secure.aarp.org/etc/aarp/statics/global/css/components.rev14508.css' type="text/css"/>
<link rel="alternate" type="application/rss+xml" title="AARP.org:  [RSS]" href="http://search.aarp.org/rss/section//?recsPerPage=99"/>
<link rel="alternate" type="application/rss+xml" title="AARP.org: Latest News [RSS]" href="http://search.aarp.org/rss/content_type/articles/article_type/news?recsPerPage=99\"/>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<!-- reus_donation_confirmation_notice -->
<!-- tested on this form:
http://aarpcares.aarp.org/site/Donation2?df_id=10600&10600.donation=form1
 -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="../js/luminateExtend.js"></script>

<script type="text/javascript">


Y.use('jquery-noconflict', function() { 
  jQuery(document).ready(function($){

// set the URL parameter df_id as a session variable

// grab that session variable and set it as a JavaScript variable
var formID = '';

// set up LuminateExtend
luminateExtend({
  apiKey: '@@rp@p1', 
  path: {
    nonsecure: 'http://aarpcares.aarp.org/site/', 
    secure: 'https://foundation.aarp.org/site/'
  }
});

var amountNotice = function () {
  // variable definitions
  var donationAmount = "(please enter an amount)";
  var isRecurringText = '';
  var noticeText = '<div id="transactionAmountConfirmation" style="background:#FCE397;border:1px solid #F3C539;padding:8px;margin-bottom:12px;">'
    + '<p style="margin:0;padding:0;">' 
    + 'Please confirm the information entered above before continuing. Click "Donate" to complete your'
    + '<span id="transactionAmountConfirmation-amount">' 
    + isRecurringText 
    + ' transaction of '
    + donationAmount
    + '</span>.'
    + '</div>';

  function updateDonation(){

    // only make the API call if there is a selected level
    if ($('[name^="level"]:checked').length > 0) {

      // process the results of the API call
      var donationTestCallback = function(data) {

        //create an array of donation levels
        var donation_levels = data.getDonationFormInfoResponse.donationLevels.donationLevel;

        // loop through the array to get the dollar amount for the checked one
        for(var i = 0; i < donation_levels.length; i++) {
          
          //check to see if the level_id matches that value for the checked level
          if(donation_levels[i].level_id === $('[name^="level"]:checked').val()) {
            // if it does, then use that level's formatted amount for the donation amount
            donationAmount = donation_levels[i].amount.formatted;

            // check to see if the selected level is the user specified level
            if(donation_levels[i].userSpecified === "true") {

              // update the donationAmount from the minimum amount (which is what you would get from the sever) to the amount entered on the front end
              donationAmount = $('.donation-level-user-entered input, .DonationLevelOtherAmount').val().match(/(\d)+((\.){1}(\d)+)?/g);
              
              // check to see if there is a valid value entered
              if (donationAmount === null || donationAmount === '') {
                
                // if there isn't a valid value, replace the notice text
                donationAmount = "(please enter an amount)";

              } else {

                // if there is a valid value, format the amount
                donationAmount = "$" + donationAmount;

              }
              
            }

          }

        }

        // check to see if the donation is set to recur
        if ($('[id*="repeatname"]').length) { 
          // the recurring checkbox exists
          if ($('[id*="repeatname"]:checked').length) { 
            // the recurring checkbox is checked
            isRecurringText = ' recurring';
          } else { 
            // the recurring checkbox is not checked
            isRecurringText = '';
          };

        } else { 
          // the recurring checkbox does not exist
          if (data.getDonationFormInfoResponse.supportsLevelAutorepeat === "true" ) { 
            // the donation is set to recur
            isRecurringText = ' recurring';
          } else { 
            // the form is not set to recur           
            isRecurringText = '';
          };

        }

        // finally, update the text in the notice
        // note that this has to be in the callback in order to ensure that 
        // the text is updated with the latest values
        $('#transactionAmountConfirmation-amount').html(isRecurringText + ' transaction of ' + donationAmount);

      };

      // make the API call
      luminateExtend.api({
        api: 'CRDonationAPI', 
        callback: donationTestCallback, 
        data: 'method=getDonationFormInfo&form_id=' + formID
      });

    }   



  };

  // return an object that has methods that can be publicly accessed
  return {
    'createNotice': function(){

      $('[id^="button"]').prepend("<tr><td colspan='4'>" + noticeText + "</td></tr>");
      $('[class^="button-container"]').prepend(noticeText);

      updateDonation();
    },
    'updateNotice': function() {

      updateDonation();
    
    }
  };
}();

amountNotice.createNotice();
$('[name^="level"]').change(amountNotice.updateNotice);
$('.donation-level-user-entered input, .DonationLevelOtherAmount').keyup(amountNotice.updateNotice);


  }); //end jQuery(document).ready()
}); //end Y.use('jquery-noconflict')

</script>









<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-47957256-1', 'convio.net');
  ga('send', 'pageview');


</script>



<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','//connect.facebook.net/en_US/fbevents.js');

fbq('init', '939563252802397');
fbq('track', "PageView");



</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=939563252802397&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
 

		
</head>
<body













>	
<!-- Wrapper: 2015 Foundation - M+R - Donation form redesign -->
<!--[if lte IE 7]>
	<style>

		.footer .toolbar ul.right
		{
			margin-top: 0px;
		}
		.boilerplate li
		{
			display: inline !important;
		}

	</style>
<![endif]-->
<style>

	.container a, .container a:visited
	{
		color: #369;
	}

	.container a:hover
	{
		color: #900;
	}
	
	#page .container
	{
		background-color: #fff;
		background-image: none !important;
	}
	
	#content
	{
        padding: 0 20px;                
	}

	tbody[id*="level"] td label
	{
		font-size: 13px;
		color: #000000;
		margin-top: 0px;
	}
	/* padding between donation level rows: */
	tbody[id*="level"] tr td td
	{
		padding-top: 3px;
		padding-bottom: 3px;
		vertical-align: top !important;
	}
	/* padding for the donation level text: */
	tbody[id*="level"] tr td td + td
	{
		padding-left: 7px;
	}

	p, li, ol, ul, table, tr, th, td, .Explicit
	{
		font-family: Arial, Verdana, sans-serif !important;
	}

	/* 
	Hide the you-are-logged-in message:
	tr td.FormInfoMsg
	{
		display: none !important;
	}
	table.holdsErrorMsg tr td.FormInfoMsg
	{
		display: block !important;
	}
	*/
	.FormInfoMsg div.FormMsgText
	{
		padding-bottom: 14px;
	}
	
	/* Wrapper-specific */
	#sharethis_0
	{
		display: none;
	}
	#page .container
	{
		position: relative;
		padding: 0 0 20px 0;
		box-shadow: 0px 0px 3px #666;
	}
	#content > table
	{
		float: none;
	}
	#graphicheader
	{
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}
	#graphicheader-sm
	{
		display: none;
		background-image: url('https://secure2.convio.net/aarp1/images/content/pagebuilder/donation-desktopheader.jpg');
		width: 100%;
		height: 75px;
		background-size: cover;
		background-position: 50% 50%;
	}
	
	/* only add right padding to html captions at top of page */
	tbody[id*="page"] + tbody[id*="html-caption"] td.FormCaption, tbody[id*="page"] + tbody[id*="html-caption"] + tbody[id*="html-caption"] td.FormCaption, tbody[id*="page"] + tbody[id*="html-caption"] + tbody[id*="html-caption"] + tbody[id*="html-caption"] td.FormCaption
	{
		padding-right: 150px;
	}
	#seals
	{
		position: absolute;
		top: 95px;
		right: 15px;
		width: 150px;
		text-align: center;
	}
	#seals > *
	{
		display: block;
		margin: 0 auto 20px auto;
	}
	.footer
	{
		z-index: 10;
		position: relative;
	}
	
	/* Thank you page fixes: */
	tbody[id^="completed"] > tr > td
	{
		padding-right: 150px;
	}
	
	@media only screen and (max-device-width: 480px), only screen and (max-width: 480px)
	{
		#graphicheader
		{
			display: none;
		}
		#graphicheader-sm
		{
			display: block;
		}
		
		/* fixes to make this work with the existing mobile styles CSS (see S51 tag below) */
		body #page .container
		{
			padding: 0 !important;
		}
		body #content
		{
			padding: 0;
		}
		#overTable
		{
			padding-top: 10px;
		}
		tbody[id*="page"] + tbody[id*="html-caption"] td.FormCaption, tbody[id*="page"] + tbody[id*="html-caption"] + tbody[id*="html-caption"] td.FormCaption, tbody[id*="page"] + tbody[id*="html-caption"] + tbody[id*="html-caption"] + tbody[id*="html-caption"] td.FormCaption
		{
			padding-right: 0px !important;
		}
		body #vs_seal
		{
			display: block !important;
		}
		body #seals
		{
			position: relative;
			top: 10px;
			right: auto;
			margin: auto;
			width: 150px;
			text-align: center;
			padding-bottom: 10px;
		}
		#pstep_finish
		{
			-webkit-appearance: none;
		}
		
		/* Thank you page fixes: */
		body tbody[id^="completed"]
		{
			padding-right: 0px;
		}
		tbody[id^="completed"] img
		{
			max-width: 280px !important;
		}
	}

</style>
<!-- Standard page mobile styles: -->
<meta name="viewport" content="width=960">
<style>
	legend.surveyLegend { display: inline !important; }
	@media only screen and (max-device-width: 480px), only screen and (max-width: 480px)
	{
                #page .container { width: 100vw !important; }
		form#ProcessForm
		{
			width: 300px !important;
		}
		table.DonationAppTable
		{
			border: 0px;
			width: 300px !important;
		}

		table.DonationAppTable table, table.DonationAppTable table tbody, table.DonationAppTable table tbody tr, table.DonationAppTable table tbody tr td
		{
			display: block !important;
			float: left !important;  /* for Windows Phone */
			height: auto !important;
		}
		table.DonationAppTable table tbody
		{
			clear: left !important;
		}
		table.DonationAppTable table tbody tr
		{
			width: 280px;
		}

		table.DonationAppTable table tbody tr tr
		{
			/* for any deeper TRs - likely the gift string */
			width: 100%; /* set this to 100% for vert gift string, auto for horiz gift string */
		}
		table.DonationAppTable table tbody tr tr td
		{
			width: auto !important;
		}
		table.DonationAppTable tbody[id*="level-standard"] table td
		{
			white-space: nowrap !important;  /* prevent Other Amt input field from wrapping */
		}
		table.DonationAppTable table tbody tr tr td label.RadioGroupLabel
		{
			white-space: nowrap !important;
			width: auto !important;
			padding-right: 8px;
		}
		table.DonationAppTable input.DonationLevelOtherAmount
		{
			display: block;
			width: 80px;
		}
		table.DonationAppTable tr.FormRow
		{
			background-color: transparent;
		}
		table.DonationAppTable td.requiredIndicator
		{
			width: 8px;
		}
		table.DonationAppTable td.FormCaption *
		{
			max-width: 280px !important;
		}
		table.DonationAppTable input.ButtonInput
		{
			width: auto !important;
		}
		table.DonationAppTable label.CheckboxLabel
		{
			display: inline-block !important;
			width: 240px !important;
		}
		table.DonationAppTable tr#donor_email_opt_in_Row td.FormLabel
		{
			display: none !important;
		}
		input, select
		{
			font-size: 16px !important;
		}
		table.DonationAppTable td.FormInput
		{
			width: 150px;
		}
		table.DonationAppTable input[size="30"], table.DonationAppTable input[size="20"]
		{
			width: 146px !important;
		}
		table.DonationAppTable select#billing_addr_state, table.DonationAppTable select#billing_addr_country
		{
			width: 156px !important;
		}
		table.DonationAppTable tr#payment_typecc_type_Row td.FormInput fieldset
		{
			display: block !important;
			padding-left: 0px;
		}
		table.DonationAppTable tr#payment_typecc_type_Row p.centered
		{
			margin-bottom: 0px !important;
		}
		table.DonationAppTable label.FormLabel
		{
			display: inline-block;
			width: 100px;
			min-width: inherit;
		}
		table.DonationAppTable #payment_typecc_cvvname
		{
			margin-left: 0px;
		}
		table.DonationAppTable .HelpLink
		{
			font-size: 12px;
			white-space: nowrap;
			-webkit-text-size-adjust: none;
			-moz-text-size-adjust: none;
			-ms-text-size-adjust: none;
			text-size-adjust: none;
		}
		table.DonationAppTable label[for="payment_typecc_exp_date_YEAR"]
		{
			display: none;
		}

		/* Error messages on new line: */
		table.DonationAppTable td.holdsErrorMsgTable
		{
			clear: left !important;
		}
		/* No warn messages, just error messages on mobile form: */
		#ProcessForm div.errorMessageContainer
		{
			padding-top: 14px !important;
			padding-bottom: 8px !important;
		}
		#ProcessForm div.errorMessageContainer table
		{
			width: 300px !important;
		}
		#ProcessForm div.errorMessageContainer table td:first-child,
		#ProcessForm div.errorMessageContainer table td:nth-child(2),
		#ProcessForm div.errorMessageContainer table td:nth-child(3)
		{
			display: none;
		}
		#ProcessForm div.errorMessageContainer table td
		{
			padding: 0px !important;
			text-align: center;
		}
		#ProcessForm div.errorMessageContainer table td img
		{
			display: none !important;
		}
		table.DonationAppTable div.WarnMessage2, table.DonationAppTable div.WarnImage2, 
		table.DonationAppTable div.InfoMessage2, table.DonationAppTable div.InfoImage2
		{
			display: none !important;
		}
		table.DonationAppTable td.FormMsgIcon img
		{
			visibility: hidden !important;
		}
		table.DonationAppTable td.holdsErrorMsgTable
		{
			background-color: transparent !important;
			padding: 0px;
			border-collapse: collapse;
			color: red !important;
		}
		table.DonationAppTable td.holdsErrorMsgTable table.holdsErrorMsg td.FormInfoMsg
		{
			width: 260px !important;
			max-width: 260px !important;
			height: auto !important;
			overflow: visible;
			font-size: 1em;
		}

		/* partially specific: */
		table.DonationAppTable td.requiredIndicator
		{
			padding-top: 4px;
		}
		table.DonationAppTable .FormLabel
		{
			vertical-align: middle !important;
		}
		table.DonationAppTable tbody[id*="level-standard"] .FormLabel
		{
			padding-top: 1px;
			vertical-align: top !important;
		}
		table.DonationAppTable table tr td.FormLabel
		{
			width: 100px !important;  /* set with table.DonationAppTable label.FormLabel above */
		}
		tr td h5.FormSectionHeader
		{
			width: 260px !important;
			margin-top: 0px;
			padding-top: 0px;
		}
		table.DonationAppTable table.overTable > tbody
		{
			padding-left: 10px;
		}
		tbody[id*="level-flexible"] table
		{
			margin-left: 12px;
		}
		label[for*="payment_typecc_type"]
		{
			line-height: 1px;
		}
		span.CheckBoxFormLabelText
		{
			white-space: nowrap;
		}
		tr#donor_email_opt_in_Row td
		{
			display: none !important;
		}
		td.FormCaption table[align="center"], td.FormCaption table[align="center"] td
		{
			width: 100% !important;
		}
		td.FormCaption table[align="center"] td img, td.FormCaption table[align="center"] td div
		{
			display: block;
			margin: auto;
		}
		table.DonationAppTable #pstep_finish
		{
			display: block;
			margin-left: 50px;
			margin-right: 50px;
		}
		div.DonLevelAskMsg img
		{
			display: none;
		}
	
		/* AARP specific: */
		.content, .twoColumn .pageColumnMain, .pageColumnMain.parsys
		{
			width: 300px !important;
		}
		.pageColumnMain.parsys
		{
			margin-top: -50px;
		}
		table.DonationAppTable table tbody tr td table.ProgressBar
		{
		    display: none !important;
		}
		body #page .container
		{
			padding-right: 7px;
			padding-left: 7px;
			width: 300px;
			background-image: none;
			background-color: #fff;
			box-shadow: 2px 0px 3px #ccc, -2px 0px 3px #ccc;
		}
		body .content
		{
			float: none
		}
		h5.FormSectionHeader
		{
		    margin-left: 0;
		    margin-right: 0;
		    padding-left: 0;
		}
		body #payment_typecc_exp_date_MONTH, body #payment_typecc_exp_date_YEAR
		{
			width: 72px;
		}
		body #payment_typecc_cvvname
		{
			width: 62px;
		}
		body #payment_typecc_type_Row img
		{
		    margin-left: 2px;
		}
		body label[for="payment_typecc_type"] > span.FormLabelText:before
		{
			content: "Card Type:";
		    font-size: 13px;
		}
		body label[for="payment_typecc_type"] > span.FormLabelText
		{
		    font-size: 0px;
			-webkit-text-size-adjust: none;
			-moz-text-size-adjust: none;
			-ms-text-size-adjust: none;
			text-size-adjust: none;
		}
		body label[for="payment_typecc_numbername"] > span.FormLabelText:before
		{
			content: "Card Number:";
		    font-size: 13px;
		}
		body label[for="payment_typecc_numbername"] > span.FormLabelText
		{
		    font-size: 0px;
			-webkit-text-size-adjust: none;
			-moz-text-size-adjust: none;
			-ms-text-size-adjust: none;
			text-size-adjust: none;
		}
		input[type="text"], input[type="email"], select
		{
			font-size: 16px !important;
		}
		#vs_seal, .hide_on_mobile
		{
			display: none !important;
		}
		table.DonationAppTable table.hide_on_mobile
		{
			display: none !important;
		}
		table.DonationAppTable label.CheckboxLabel[for="level_standardauto_repeatname"]
		{
			width: 130px !important;
		}
		.FormCaption b
		{
			line-height: normal;
		}
		#payment_typecc_type_Row span.FormLabelText
		{
			top: 10px;
		}
		#pstep_finish
		{
			display: block;
			margin-left: 90px !important;
			margin-bottom: 24px;
		}
                body #content table label { font-size: 22px; }
                body #content table input[type="text"],
                body #content table input[type="email"] { font-size: 23px !important; width: 100%; height: 35px; }
                body #content table fieldset label { font-size: inherit; }
	}
	
</style>

<div id="page">
	<div class="container">
		<img id="graphicheader" src="https://secure2.convio.net/aarp1/images/content/pagebuilder/donation-desktopheader.jpg" alt="AARP Foundation"/>
                <div id="graphicheader-sm"></div>
		<div id="content">
			





<style>
#page ul li { list-style: initial; margin-left: 25px; font-family: Arial,sans-serif; }
</style>

<!-- For wrapper "Foundation - Dynamic - Wrapper - left nav- full footer" only -->
<!-- Add this if you do not want the left column to appear -->

<!-- End of left column control -->



<style>
#header { background: #fff; padding: 10px 0 0; width:769px; }
#wrapper { width:769px; }
table {
    border-collapse: separate;
    border-spacing: 10px;
}
table td, table th {
    padding: 0px;
}
</style>
<style>

.footer
{
	position: absolute;
	left: 0px;
	right: 0px;
}
span.legendWrapper
{
	max-width: 780px;
}

</style>
<script>
var totalAmount="Gift Amount";
ga('require', 'ecommerce', 'ecommerce.js');
ga('ecommerce:addTransaction', {
  'id': 'Tracking Code',                     // Transaction ID. Required.
  'revenue': totalAmount.replace("$","").replace(",",""),               // Grand Total.
});
ga('ecommerce:addItem', {
  'id': 'Tracking Code',                     // Transaction ID. Required.
  'name': 'dc:giftType Donation',    // Product name. Required.
  'category': 'Donation',         // Category or variation.
  'price': totalAmount.replace("$","").replace(",",""),                 // Unit price.
  'quantity': '1'                   // Quantity.
});
ga('ecommerce:send');
</script>

<script type="text/javascript">
var fb_param = {};
fb_param.pixel_id = '6013088634977';
fb_param.value = '0.00';
fb_param.currency = 'USD';
(function(){
  var fpw = document.createElement('script');
  fpw.async = true;
  fpw.src = '//connect.facebook.net/en_US/fp.js';
  var ref = document.getElementsByTagName('script')[0];
  ref.parentNode.insertBefore(fpw, ref);
})();
</script>
<noscript><img height="1" width="1" alt="" style="display:none" src="https://www.facebook.com/offsite_event.php?id=6013088634977&amp;value=0&amp;currency=USD" /></noscript>


<table style="width:750px; background: #fff; text-align:left; margin:0 auto;" align="left" border="0">
	<tr>
		<td>	
			<TABLE cellSpacing=0 cellPadding=9 width="674" align=left border=0 bgcolor="#FFFFFF"> 
				<tr>
					<td>
						<div class="selectFontSize" align=right>
  							<script type="text/javascript">if (efa_fontSize) document.write(efa_fontSize.allLinks);</script>
  						</div>
  					</td>
  				</tr> 
				<tr>
  					<td colspan="2" align="left" valign="top"><span style="font-family: Calibri,Arial,sans-serif;">
<div style="font-family: Calibri,Arial,sans-serif !important; font-size: 12pt !important; line-height: 16pt !important;"><span style="font-family: Calibri,Arial,sans-serif !important; font-size: 19pt; line-height: 23pt;" align="left"><b>Thank You</b></div><br /></span>	
												
<p>Thanks to the support from our generous donors and a matching gift from AARP and AARP Foundation, we are on track to deliver more than $3.2 million to organizations working in response to Hurricane Harvey, focusing on delivering help to older adults who survived this disaster. We greatly appreciate everyone who stepped forward during this time of need.</p><br />


<p>Though we are no longer collecting donations for this emergency, you can:</p><br />
<ul style ="font-family: Arial,sans-serif !important; font-size: 10pt !important; line-height: 16pt !important;">
<li style="font-family: Arial,sans-serif !important; font-size: 10pt !important; line-height: 16pt !important;">Make a gift to support AARP Foundation's Hurricane Irma disaster relief campaign to help those in the southeastern United States and the Caribbean. <b><a style="color: #0570ad; font-family: Arial,Helvetica,sans-serif; text-decoration: underline;" href="http://aarpcares.aarp.org/site/Donation2?df_id=15346&mfc_pref=T&15346.donation=form1" target="blank">Click here to make a donation to support Hurricane Irma Disaster Campaign.
</a></b></li>
<li style="font-family: Arial,sans-serif !important; font-size: 10pt !important; line-height: 16pt !important;">Make a gift to support AARP Foundation's year-round work to help seniors overcome issues with housing, hunger, income, and isolation. <b><a style="color: #0570ad; font-family: Arial,Helvetica,sans-serif; text-decoration: underline;" href="https://foundation.aarp.org/site/Donation2?14308.donation=form1&df_id=14308&mfc_pref=T" target="blank">Click here to make a donation to support struggling seniors across the country.
</a></b></li></ul></span>
						
						
						
					</td>
				</tr>
			</table>
		</td>
	</tr>
</table>

		</div><!-- END: content -->
		<div id="seals">
			
		</div>
	</div><!-- END: container -->
</div><!-- END: page -->

<!-- FOOTER: -->
<link rel="stylesheet" href="https://secure.aarp.org/etc/aarp/statics/global/css/components.rev11155.css" type="text/css">
<div class="footer parbase">
	<script type="text/javascript">
		jQuery('.footer').addClass('mod2013');
	</script>
	<div class="footer2013">
		<div class="boilerplate">
			<ul>
				<li class="first">
					<a href='http://www.aarp.org/aarp-foundation/sitemap/' title="Sitemap">
						<span class="text">Sitemap</span>
					</a>
				</li>
				<li class="">
					<a href='http://www.aarp.org/about-aarp/info-05-2010/privacypolicy.html' title="Your Privacy Rights: Privacy Policy">
						<span class="text">Your Privacy Rights: Privacy Policy</span>
					</a>
				</li>
				<li class="">
					<a href='http://www.aarp.org/about-aarp/info-05-2010/terms_of_service.html' title="Terms of Service">
						<span class="text">Terms of Service</span>
					</a>
				</li>
				<li class="last">
					<a href='http://www.aarp.org/aarp-foundation/copyright-information/' title="Copyright">
						<span class="text">Copyright</span>
					</a>
				</li>
			</ul>
		</div>
	</div>
</div>





	<div class="parbase omniture">
<!-- Begin Omniture Code
---------------------------------->
<!--	SiteCatalyst code version: H.24.1.
		Copyright 1996-2011 Adobe, Inc. All Rights Reserved
		More info available at http://www.omniture.com -->

<script type="text/javascript" src='https://secure.aarp.org/etc/aarp/statics/global/js/omniture.rev11155.js'></script>
<!-- CMS Omniture flag turned on -->

<!-- End SiteCatalyst code version: H.24.1. -->
<!-- End Omniture Code
----------------------------------></div>

<script type="text/javascript">
adroll_adv_id = "3DZSRPKXXRFWZNCTSSY5F2";
adroll_pix_id = "HTRZQ2HTRBHMTCLLVVLUNK";
(function () {
var oldonload = window.onload;
window.onload = function(){
   __adroll_loaded=true;
   var scr = document.createElement("script");
   var host = (("https:" == document.location.protocol) ? "https://s.adroll.com" : "http://a.adroll.com");
   scr.setAttribute('async', 'true');
   scr.type = "text/javascript";
   scr.src = host + "/j/roundtrip.js";
   ((document.getElementsByTagName('head') || [null])[0] ||
    document.getElementsByTagName('script')[0].parentNode).appendChild(scr);
   if(oldonload){oldonload()}};
}());
</script>

<!-- Google Code for Remarketing Tag -->
<!--------------------------------------------------
Remarketing tags may not be associated with personally identifiable information or placed on pages related to sensitive categories. See more information and instructions on how to setup the tag on: http://google.com/ads/remarketingsetup
--------------------------------------------------->
<script type="text/javascript">
var google_conversion_id = 926866065;
var google_custom_params = window.google_tag_params;
var google_remarketing_only = true;
</script>
<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
</script>
<noscript>
<div style="display:inline;">
<img height="1" width="1" style="border-style:none;" alt="" src="//googleads.g.doubleclick.net/pagead/viewthroughconversion/926866065/?value=0&amp;guid=ON&amp;script=0"/>
</div>
</noscript>


</body>

</html>
