
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, target-densitydpi=high-dpi, initial-scale=1, minimum-scale=1" />
<meta httpequiv="X-UA-Compatible" content="IE=Edge" />
<meta name="generator" content="Kalibrate .NET Framework" />
<meta name="copyright" content="Region 4 Education Service Center" />
<script id="ua-prop-uuid" class="UA-30076566-1"></script>
<meta name="robots" content="index" />
    
    <title>Region 4 Disaster Recovery Relief</title>    
    <link rel="icon" type="image/ico" href="/Themes/Default/Content/favicon.ico?Zp3$6L" />
    <link href="/themes/default/content/animate.css" rel="stylesheet" type="text/css" />
<link href="/themes/default/content/contentblocks.css" rel="stylesheet" type="text/css" />
<link href="/themes/default/content/styles.css" rel="stylesheet" type="text/css" />
<link href="/themes/default/content/screendesktop.css" rel="stylesheet" type="text/css" />
<link href="/themes/default/content/screen768.css" rel="stylesheet" type="text/css" />
<link href="/themes/default/content/pushy.css" rel="stylesheet" type="text/css" />
<link href="/themes/default/content/r4menu.css" rel="stylesheet" type="text/css" />
<link href="/themes/default/content/dropdown.css" rel="stylesheet" type="text/css" />
<link href="/themes/default/content/screen480.css" rel="stylesheet" type="text/css" />
<link href="/themes/default/content/screen320.css" rel="stylesheet" type="text/css" />
<link href="/themes/default/content/esc4-modified.css" rel="stylesheet" type="text/css" />

    <script src="/console/content/scripts/jquery.min.js" type="text/javascript"></script>
<script src="/themes/default/content/scripts/modernizr.js" type="text/javascript"></script>
<script src="/themes/default/content/scripts/jquery.watermark.js" type="text/javascript"></script>
    
    <meta charset="utf-8" />
       
</head> 
<body>
    

    <div id="basecontainer">
        <div class="basegridwidth">
            

<div class="header" id="summerhead">
    <div class="logo">
        <a href="/"><img src="/Themes/Default/Content/images/logo.png" alt="Region 4 Education Service Center" /></a>
    </div>
    <div class="utilitynav no-zoom">
        <a href="/contact-us">Contact Us</a> <a href="https://post2.esc4.net/owa/auth/logon.aspx?replaceCurrent=1&amp;url=https%3a%2f%2fpost2.esc4.net%2fowa%2f" target="_blank">Staff E-mail</a> <a href="http://www.nationalipa.org/Pages/default.aspx" target="_blank">National IPA/TCPN</a>
            <div style="display: none;"></div>
        <a target="_blank" class="sociallinks" title="Like Us on Facebook" href="https://www.facebook.com/Region4ESC"> <img src="/Themes/Default/Content/images/facebook.gif" alt="Follow us on Facebook."></a>
        <a target="_blank" class="sociallinks" title="Follow Us on Twitter" href="https://twitter.com/region4esc"><img alt="" src="/Themes/Default/Content/images/twitter-bird-16x16.jpg"></a>
    </div>
    <div class="headersearch">
        <div id="pubsearch">
            <input type="text" name="Find" value="" id="txtSearch" class="jq_watermark" placeholder="Search" /><img id="btnSearch" src="/Themes/Default/Content/Images/btn_search.png" alt="" style="float:right; cursor: pointer; padding: 8px 0 0 4px;" width="18" height="17" />
        </div>
    </div>
    <div class="no-zoom fontchangetext">Change Font Size</div>
    <div id="zoom" class="no-zoom unselectable fontchange">
        <span class="default"><img src="/Themes/Default/Content/images/reset.gif" alt="Reset Text Size" title="Reset Text Size"></span>
        <span class="minus"><img src="/Themes/Default/Content/images/minus.gif" alt="Reduce Text Size" title="Reduce Text Size"></span>
        <span class="plus"><img src="/Themes/Default/Content/images/plus.gif" alt="Increase Text Size" title="Increase Text Size"></span>
    </div>

    <script language="javascript">
        /* start ZoomMenu */
        $(function () {


            if (!window.jw) jw = {};

            jw.ZoomMenu = function (a, o) {
                var t = this;

                t.body = $("body");
                t.element = a = $(a);
                t.settings = {
                    min: 12
                    , max: 30
                    , tags: "*:not(html,script,style,iframe,head,meta,title,link)"
                    , exclude: ".no-zoom,.no-zoom *"
                    , increment: 2
                };

                if (o) for (var i in o) t.settings[i] = o[i];


                t.minusBtn = a.children("span.minus");
                t.plusBtn = a.children("span.plus");
                t.defaultBtn = a.children("span.default");

                t.zoomFont = function (n) {
                    var s = this.settings, l = $(s.tags);

                    l.each(function (i, a) {
                        a = $(a);
                        a.css("fontSize", a.css("fontSize"));
                    });

                    l.not(s.exclude).each(function (i, a, d) {

                        a = $(a); d = a.data();

                        if (!d.def) {
                            d.def = parseInt(a.css("fontSize"));
                            d.curr = d.def;
                        }

                        d.curr = d.curr + n;

                        if (d.curr > s.max) d.curr = s.max;
                        else if (d.curr < s.min) d.curr = s.min;

                        if (!n) d.curr = d.def;

                        a.css("fontSize", d.curr + "px");

                    });
                }


                t.init = function () {
                    var t = this, s = t.settings;
                    t.minusBtn.mousedown(function () {
                        t.zoomFont(-s.increment);
                    });


                    t.plusBtn.mousedown(function () {
                        t.zoomFont(s.increment);
                    });

                    t.defaultBtn.mousedown(function () {
                        t.zoomFont(0);
                    });
                }

                this.init();
            }
        });
        /* end ZoomMenu */

        $(function () {
            new jw.ZoomMenu($("#zoom"), {
                min: 12
                , max: 30
                , exclude: ".no-zoom,.no-zoom *"
                , increment: 2
            });
        });
    </script>
    <script type="text/javascript">
    $(document).ready(function () {
        //'search-results';
        $("#btnSearch").bind("click", function () {
            if ($("#txtSearch").val().length > 0) {
                location.href = "/search-results?keyword=" + $("#txtSearch").val();
            }
        });

        $("#txtSearch").bind("keypress", function (e) {
            if (e.keyCode == 13) {
                location.href = "/search-results?keyword=" + $("#txtSearch").val();
            }
        });

    });
    </script>

    <div class="navr no-zoom">



<header>
    <!-- Menu Button -->
    <div class="menu-btn"></div>

    <!-- Pushy Menu -->
    <nav class="pushy pushy-right">
        <div class="menu-title">
            <div class="logographic"><a href="/"><img src="/Themes/Default/Content/images/logo-region4.jpg" alt="Region 4 Education Service Center" /></a></div>
        </div>
        <ul>
                <li>
                        <a>About</a>
                                            <ul>
                                    <li><a href="/about/about-region-4">About Region 4</a></li>
                                    <li><a href="/contact-us">Contact Us</a></li>
                                    <li><a href="/about/region-4-school-directory">Region 4 School District Directory</a></li>
                                    <li><a href="/Assets/Region-4-Districts-and-Charters-Profile-2017-2018.pdf" target="_blank">Region 4 Demographics</a></li>
                                    <li><a href="/Assets/Region-4-District-Calendar-2017-2018.pdf" target="_blank">Region 4 School District Calendar</a></li>
                        </ul>
                </li>
                <li>
                        <a>Professional Development</a>
                                            <ul>
                                    <li><a href="https://www.escweb.net/tx_esc_04/default.aspx" target="_blank">Professional Development Home</a></li>
                                    <li><a href="https://www.escweb.net/tx_esc_04/search.aspx" target="_blank">Keyword Search</a></li>
                                    <li><a href="https://www.escweb.net/tx_esc_04/catalog/calendar.aspx" target="_blank">Calendar of Sessions</a></li>
                                    <li><a href="https://www.escweb.net/tx_esc_04/catalog/results.aspx?cmd=conference" target="_blank">Conference Events</a></li>
                                    <li><a href="https://www.escweb.net/tx_esc_04/security/signin.aspx?ReturnUrl=%2ftx_esc_04%2fshoebox%2ftranscripts%2fdefault.aspx" target="_blank">Transcripts</a></li>
                                    <li><a href="https://www.escweb.net/tx_esc_04/security/signin.aspx?ReturnUrl=%2ftx_esc_04%2fshoebox%2faccount%2fdefault.aspx" target="_blank">User Account</a></li>
                                    <li><a href="https://www.escweb.net/tx_esc_04/security/signin.aspx?ReturnUrl=%2ftx_esc_04%2fshoebox%2fregistration%2fdefault.aspx" target="_blank">Registration/Certificate</a></li>
                                    <li><a href="https://www.escweb.net/tx_esc_04/security/signin.aspx?ReturnUrl=%2ftx_esc_04%2fshoebox%2fsubscriptions%2fdefault.aspx" target="_blank">Subscriptions</a></li>
                                    <li><a href="https://www.escweb.net/tx_esc_04/help.aspx" target="_blank">Help and How-To</a></li>
                                    <li><a href="/conferences">Region 4 Conferences</a></li>
                                    <li><a href="https://www.escweb.net/tx_esc_04/shoebox/account/signup.aspx" target="_blank">Create Account</a></li>
                        </ul>
                </li>
                <li>
                        <a>Services</a>
                                            <ul>
                                    <li><a href="/accountability">Accountability and Leadership</a></li>
                                    <li><a href="/gifted">Advanced Academics</a></li>
                                    <li><a href="http://inspiretexas.net/" target="_blank">Alternative Certification Program</a></li>
                                    <li><a href="/services/ancillary">Ancillary</a></li>
                                    <li><a href="/behaviorsupport">Behavior Support</a></li>
                                    <li><a href="/bilingual">Bilingual/ESL/Title III</a></li>
                                    <li><a href="/braille">Braille Solutions</a></li>
                                    <li><a href="/services/purchasing">Business Office</a></li>
                                    <li><a href="/cte"> Career & Technical Education</a></li>
                                    <li><a href="/services/charters">Charter Schools</a></li>
                                    <li><a href="/nutrition">Child Nutrition</a></li>
                                    <li><a href="/services/data-center-videoconf">Data Center & Network Solutions</a></li>
                                    <li><a href="/digitallearning">Digital Learning</a></li>
                                    <li><a href="/services/dmac"> DMAC</a></li>
                                    <li><a href="/dyslexia">Dyslexia</a></li>
                                    <li><a href="http://www.escworks.com/" target="_blank">escWorks</a></li>
                                    <li><a href="/services/human-resources">Human Resources</a></li>
                                    <li><a href="/services/its-home">IT Solutions</a></li>
                                    <li><a href="/services/library">Library</a></li>
                                    <li><a href="/services/mis">Management Information</a></li>
                                    <li><a href="/math">Mathematics</a></li>
                                    <li><a href="/onlinelearning4students">Online Learning 4 Students</a></li>
                                    <li><a href="/services/peims">PEIMS</a></li>
                                    <li><a href="http://www.region4printcenter.com" target="_blank">Print Center</a></li>
                                    <li><a href="/services/publishing">Publishing</a></li>
                                    <li><a href="/rla">Reading/Language Arts</a></li>
                                    <li><a href="/services/safe-schools">Safe Schools</a></li>
                                    <li><a href="/services/school-health-services">School Health Services</a></li>
                                    <li><a href="/services/school-personnel">School Personnel </a></li>
                                    <li><a href="/science">Science</a></li>
                                    <li><a href="/socialstudies">Social Studies</a></li>
                                    <li><a href="/specialeducation">Special Education</a></li>
                                    <li><a href="/services/superintendent-school-board-development">Superintendent/School Board</a></li>
                                    <li><a href="/services/teksrs">TEKS Resource System</a></li>
                                    <li><a href="http://www.texasat.net/" target="_blank">Texas AT Network</a></li>
                                    <li><a href="http://www.txbehaviorsupport.org" target="_blank">Texas Behavior Support Network</a></li>
                                    <li><a href="http://www.esc4.net/services/digital-learning2/texas-gateway" target="_blank">Texas Gateway</a></li>
                                    <li><a href="/transportation">Transportation</a></li>
                                    <li><a href="/videoconferencing">Videoconferencing</a></li>
                        </ul>
                </li>
                <li>
                        <a>Products</a>
                                            <ul>
                                    <li><a href="http://www.region4store.com/" target="_blank">Region 4 Store</a></li>
                                    <li><a href="/staar">STAAR® Resources</a></li>
                        </ul>
                </li>
                <li>
                        <a>Certification</a>
                                            <ul>
                                    <li><a href="http://inspiretexas.net/" target="_blank">Home</a></li>
                                    <li><a href="http://www.escweb.net/tx_acp/eligiblecandidates/(S(gljimg55sfqkdhnymah4dk55))/login.aspx" target="_blank">Candidate Search</a></li>
                                    <li><a href="http://www.texes.ets.org/" target="_blank">TExES Exam Registration</a></li>
                                    <li><a href="https://www.escweb.net/tx_acp/acpapplication/loginform.aspx?ReturnUrl=/tx_acp/acpapplication/Default.aspx" target="_blank">Teacher Candidate</a></li>
                                    <li><a href="https://www.escweb.net/tx_acp/acpapplication/loginform.aspx?Programtype=Counselor" target="_blank">Counselor Candidate</a></li>
                                    <li><a href="https://www.escweb.net/tx_acp/acpapplication/loginform.aspx?ReturnUrl=/tx_acp/acpapplication/Default.aspx?ProgramType=Principalship&amp;ProgramType=Principalship" target="_blank">Principal Candidate</a></li>
                                    <li><a href="https://www.escweb.net/tx_acp/acpapplication/loginform.aspx?ReturnUrl=%2ftx_acp%2facpapplication%2fDefault.aspx%3fProgramType%3dSuperintendent&amp;ProgramType=Superintendent" target="_blank">Superintendent Candidate</a></li>
                                    <li><a href="https://www.escweb.net/tx_acp/acpapplication/loginform.aspx?programtype=masterteacher" target="_blank">Master Teacher Candidate </a></li>
                        </ul>
                </li>
                <li>
                        <a>Employment</a>
                                            <ul>
                                    <li><a href="/districtjobs">Search District Jobs</a></li>
                                    <li><a href="https://hr4u3.esc4.net/eFP50-SP1/RMWeb/AM/External/WebPostingsWelcome.aspx" target="_blank">Search Region 4 Jobs</a></li>
                                    <li><a href="/jobfair">Gulf Coast Teacher Job Fair</a></li>
                                    <li><a href="/international-teacher-conference-and-job-fair">International Teacher Conference and Job Fair</a></li>
                        </ul>
                </li>
                                <li><a href="/contact-us">Contact Us</a></li>
                    <li><a href="https://post2.esc4.net/owa/auth/logon.aspx?replaceCurrent=1&amp;url=https%3a%2f%2fpost2.esc4.net%2fowa%2f" target="_blank">Staff E-mail</a></li>
                    <li><a href="http://www.nationalipa.org/Pages/default.aspx" target="_blank">National IPA/TCPN</a></li>
                                    <li style="display: none;"></li>
        </ul>
        <div class="clear25"></div>
    </nav>



    <!-- Site Overlay -->
    <div class="site-overlay"></div>
</header>

<script src="/Themes/Default/Content/Scripts/pushy.js"></script></div>
</div>
<div class="navd no-zoom">



<script type="text/javascript">
    jQuery(window).load(function () {

        $("#nav > li > a.reveal").click(function (e) { // binding onclick
            if ($(this).parent().hasClass('selected')) {
                $("#nav .selected div div").fadeOut(100); // hiding popups
                $("#nav .selected").removeClass("selected");
            } else {
                $("#nav .selected div div").fadeOut(100); // hiding popups
                $("#nav .selected").removeClass("selected");

                if ($(this).next(".subs").length) {
                    $(this).parent().addClass("selected"); // display popup
                    $(this).next(".subs").children().fadeIn(100);
                }
            }
            e.stopPropagation();
        });

        $("body").click(function () { // binding onclick to body
            $("#nav .selected div div").slideUp(100); // hiding popups
            $("#nav .selected").removeClass("selected");
        });

    });
</script>



<ul id="nav">

    <li class="homeicon"><a href="/"><img src="/Themes/Default/Content/images/home.gif" alt="Region 4 Education Service Center" /></a></li>

        <li>
                <a href="#" class="reveal">About</a>
                <div class="subs">
                    <div class="wrp2">
<a class="level2link" href="/about/about-region-4">About Region 4</a><a class="level2link" href="/contact-us">Contact Us</a><a class="level2link" href="/about/region-4-school-directory">Region 4 School District Directory</a><a class="level2link" href="/Assets/Region-4-Districts-and-Charters-Profile-2017-2018.pdf" target="_blank">Region 4 Demographics</a><a class="level2link" href="/Assets/Region-4-District-Calendar-2017-2018.pdf" target="_blank">Region 4 School District Calendar</a>                        <div class="clear20"></div>
                    </div>
                </div>
        </li>
        <li>
                <a href="#" class="reveal">Professional Development</a>
                <div class="subs">
                    <div class="wrp2">
<a class="level2link" href="https://www.escweb.net/tx_esc_04/default.aspx" target="_blank">Professional Development Home</a><a class="level2link" href="https://www.escweb.net/tx_esc_04/search.aspx" target="_blank">Keyword Search</a><a class="level2link" href="https://www.escweb.net/tx_esc_04/catalog/calendar.aspx" target="_blank">Calendar of Sessions</a><a class="level2link" href="https://www.escweb.net/tx_esc_04/catalog/results.aspx?cmd=conference" target="_blank">Conference Events</a><a class="level2link" href="https://www.escweb.net/tx_esc_04/security/signin.aspx?ReturnUrl=%2ftx_esc_04%2fshoebox%2ftranscripts%2fdefault.aspx" target="_blank">Transcripts</a><a class="level2link" href="https://www.escweb.net/tx_esc_04/security/signin.aspx?ReturnUrl=%2ftx_esc_04%2fshoebox%2faccount%2fdefault.aspx" target="_blank">User Account</a><a class="level2link" href="https://www.escweb.net/tx_esc_04/security/signin.aspx?ReturnUrl=%2ftx_esc_04%2fshoebox%2fregistration%2fdefault.aspx" target="_blank">Registration/Certificate</a><a class="level2link" href="https://www.escweb.net/tx_esc_04/security/signin.aspx?ReturnUrl=%2ftx_esc_04%2fshoebox%2fsubscriptions%2fdefault.aspx" target="_blank">Subscriptions</a><a class="level2link" href="https://www.escweb.net/tx_esc_04/help.aspx" target="_blank">Help and How-To</a><a class="level2link" href="/conferences">Region 4 Conferences</a><a class="level2link" href="https://www.escweb.net/tx_esc_04/shoebox/account/signup.aspx" target="_blank">Create Account</a>                        <div class="clear20"></div>
                    </div>
                </div>
        </li>
        <li>
                <a href="#" class="reveal">Services</a>
                <div class="subs">
                    <div class="wrp2">
<a class="level2link" href="/accountability">Accountability and Leadership</a><a class="level2link" href="/gifted">Advanced Academics</a><a class="level2link" href="http://inspiretexas.net/" target="_blank">Alternative Certification Program</a><a class="level2link" href="/services/ancillary">Ancillary</a><a class="level2link" href="/behaviorsupport">Behavior Support</a><a class="level2link" href="/bilingual">Bilingual/ESL/Title III</a><a class="level2link" href="/braille">Braille Solutions</a><a class="level2link" href="/services/purchasing">Business Office</a><a class="level2link" href="/cte"> Career & Technical Education</a><a class="level2link" href="/services/charters">Charter Schools</a><a class="level2link" href="/nutrition">Child Nutrition</a><a class="level2link" href="/services/data-center-videoconf">Data Center & Network Solutions</a><a class="level2link" href="/digitallearning">Digital Learning</a><a class="level2link" href="/services/dmac"> DMAC</a><a class="level2link" href="/dyslexia">Dyslexia</a><a class="level2link" href="http://www.escworks.com/" target="_blank">escWorks</a><a class="level2link" href="/services/human-resources">Human Resources</a><a class="level2link" href="/services/its-home">IT Solutions</a><a class="level2link" href="/services/library">Library</a><a class="level2link" href="/services/mis">Management Information</a><a class="level2link" href="/math">Mathematics</a><a class="level2link" href="/onlinelearning4students">Online Learning 4 Students</a><a class="level2link" href="/services/peims">PEIMS</a><a class="level2link" href="http://www.region4printcenter.com" target="_blank">Print Center</a><a class="level2link" href="/services/publishing">Publishing</a><a class="level2link" href="/rla">Reading/Language Arts</a><a class="level2link" href="/services/safe-schools">Safe Schools</a><a class="level2link" href="/services/school-health-services">School Health Services</a><a class="level2link" href="/services/school-personnel">School Personnel </a><a class="level2link" href="/science">Science</a><a class="level2link" href="/socialstudies">Social Studies</a><a class="level2link" href="/specialeducation">Special Education</a><a class="level2link" href="/services/superintendent-school-board-development">Superintendent/School Board</a><a class="level2link" href="/services/teksrs">TEKS Resource System</a><a class="level2link" href="http://www.texasat.net/" target="_blank">Texas AT Network</a><a class="level2link" href="http://www.txbehaviorsupport.org" target="_blank">Texas Behavior Support Network</a><a class="level2link" href="http://www.esc4.net/services/digital-learning2/texas-gateway" target="_blank">Texas Gateway</a><a class="level2link" href="/transportation">Transportation</a><a class="level2link" href="/videoconferencing">Videoconferencing</a>                        <div class="clear20"></div>
                    </div>
                </div>
        </li>
        <li>
                <a href="#" class="reveal">Products</a>
                <div class="subs">
                    <div class="wrp2">
<a class="level2link" href="http://www.region4store.com/" target="_blank">Region 4 Store</a><a class="level2link" href="/staar">STAAR® Resources</a>                        <div class="clear20"></div>
                    </div>
                </div>
        </li>
        <li>
                <a href="#" class="reveal">Certification</a>
                <div class="subs">
                    <div class="wrp2">
<a class="level2link" href="http://inspiretexas.net/" target="_blank">Home</a><a class="level2link" href="http://www.escweb.net/tx_acp/eligiblecandidates/(S(gljimg55sfqkdhnymah4dk55))/login.aspx" target="_blank">Candidate Search</a><a class="level2link" href="http://www.texes.ets.org/" target="_blank">TExES Exam Registration</a><a class="level2link" href="https://www.escweb.net/tx_acp/acpapplication/loginform.aspx?ReturnUrl=/tx_acp/acpapplication/Default.aspx" target="_blank">Teacher Candidate</a><a class="level2link" href="https://www.escweb.net/tx_acp/acpapplication/loginform.aspx?Programtype=Counselor" target="_blank">Counselor Candidate</a><a class="level2link" href="https://www.escweb.net/tx_acp/acpapplication/loginform.aspx?ReturnUrl=/tx_acp/acpapplication/Default.aspx?ProgramType=Principalship&amp;ProgramType=Principalship" target="_blank">Principal Candidate</a><a class="level2link" href="https://www.escweb.net/tx_acp/acpapplication/loginform.aspx?ReturnUrl=%2ftx_acp%2facpapplication%2fDefault.aspx%3fProgramType%3dSuperintendent&amp;ProgramType=Superintendent" target="_blank">Superintendent Candidate</a><a class="level2link" href="https://www.escweb.net/tx_acp/acpapplication/loginform.aspx?programtype=masterteacher" target="_blank">Master Teacher Candidate </a>                        <div class="clear20"></div>
                    </div>
                </div>
        </li>
        <li>
                <a href="#" class="reveal">Employment</a>
                <div class="subs">
                    <div class="wrp2">
<a class="level2link" href="/districtjobs">Search District Jobs</a><a class="level2link" href="https://hr4u3.esc4.net/eFP50-SP1/RMWeb/AM/External/WebPostingsWelcome.aspx" target="_blank">Search Region 4 Jobs</a><a class="level2link" href="/jobfair">Gulf Coast Teacher Job Fair</a><a class="level2link" href="/international-teacher-conference-and-job-fair">International Teacher Conference and Job Fair</a>                        <div class="clear20"></div>
                    </div>
                </div>
        </li>
</ul>


    <div style="display: none;"></div>



</div>

                

<div class="contentwidth">
    <div class="contentgrid">
        <div class="contentarea">
            <div class="subnavdropdown">
                        <select name="MobileLevelNav" id="MobileLevelNav">
                            <option selected="selected" value="">Department Links</option>
                        </select>
            </div>
            <script type="text/javascript">
                $(document).ready(function () {
                    $("#MobileLevelNav").bind("change", function () {
                        location.href = $(this).val();
                    })
                });
            </script>

            <div class="pagetitle">
                    <h1>Region 4 Disaster Recovery Support</h1>
            </div>

            <div class="contentblock StandardCBStyle">
                <div>&nbsp;</div>

<div>The following resources provide important information to assist our school districts in the recovery from the effects of Hurricane Harvey. Please check this site frequently for updates or additions to this list.</div>

<p>&nbsp;</p>

<p><a href="/Assets/region-4-disaster-recovery-support-vol-1.pdf" target="_blank">Region 4 Disaster Recovery Support Vol-1</a></p>

<ul>
	<li><a href="/Assets/hb01774-final-highlighted.pdf" style="color: rgb(30, 124, 154);" target="_blank"><span style="color: rgb(0, 0, 255);">HB No. 1774 Final Highlighted</span></a></li>
	<li><a href="/Assets/noticeofclaim.docx" target="_blank">Sample Notice of Claim Form</a></li>
	<li><a href="/Assets/storm-resolution.docx" target="_blank">Sample Board Resolution Related to Authorizing Payment to Employees</a></li>
</ul>

<p>&nbsp;</p>

<p><a href="/Assets/region-4-disaster-recovery-support-update2c-vol-2.pdf" target="_blank">Region 4 Disaster Recovery Support Vol-2</a></p>

<ul>
	<li><a href="/Assets/hurricane-harvey-and-related-legal-issues-tasb.pdf" target="_blank">Hurricane Harvey and Related Legal Issues-TASB</a></li>
</ul>

<p>&nbsp;</p>

<p><a href="/Assets/region-4-disaster-recovery-support-vol-3.pdf" target="_blank">Region 4 Disaster Recovery Support Vol-3</a><br />
&nbsp;</p>

<p>&nbsp;</p>

<p><a href="/Assets/region-4-disaster-recovery-support-vol-4.pdf" target="_blank">Region 4 Disaster Recovery Support Vol-4</a></p>

<ul>
	<li><a href="/Assets/faqs-for-special-education-issues-resulting-from.pdf" target="_blank">FAQs for Special Education Issues Resulting from Hurricane Harvey</a></li>
</ul>

<p>&nbsp;</p>

<div><a href="/Assets/after-the-storm-agenda.docx" target="_blank">After the Storm&mdash;Critical Issues Facing Schools and Community Colleges after Hurricane Harvey Agenda</a></div>

<ul style="list-style-type: circle;">
	<li><a href="/Assets/exhibit-a-l-updated.pdf" target="_blank">Student Services&mdash;Exhibits A, B, C, D, E, F, G, H, I, J, K, L</a>&nbsp;(updated)</li>
	<li><a href="/Assets/exhibit-m-v-updated.pdf" target="_blank">Student Services&mdash;Exhibits M, N, O, P, Q, R, S, T, U, V</a>&nbsp;(updated)</li>
	<li><a href="/Assets/region-4-after-the-storm-personnel-issues.pdf" target="_blank">Personnel Issues Questions</a></li>
	<li><a href="/Assets/region-4-after-the-storm-tasb-personnel-issues-du.pdf" target="_blank">TASB Personnel Issues During School Closings</a></li>
	<li><a href="/Assets/region-4-after-the-storm-open-meetings-act.pdf" target="_blank">Open Meetings Act Questions</a></li>
</ul>

<p>&nbsp;</p>

<p class="normalPara"><strong><span style="font-size: 18px;">Links to Recovery Resources</span></strong></p>

<p class="normalPara">&nbsp;</p>

<p class="normalPara"><a href="/Assets/tacac-harvey-intro-letter-3.pdf" target="_blank">Texas Association for College Admission Counseling Harvey Relief Fund Application</a><br />
&nbsp;</p>

<p class="normalPara"><a href="/Assets/harvey-kids-news-release.docx" target="_blank">Grant Opportunity: Harvey KIDS Education Fund</a></p>

<p class="normalPara">&nbsp;</p>

<p class="normalPara"><a href="http://tea.texas.gov/About_TEA/Other_Services/Weather_and_Disaster/Hurricane_Harvey_Resources/" style="color: rgb(30, 124, 154);" target="_blank"><span style="color: rgb(0, 0, 255);">TEA Hurricane Harvey Resources</span></a></p>

<p>&nbsp;</p>

<p><a href="http://www.laurabushfoundation.com/" target="_blank">Former First Ladies Unite to Provide Relief to Schools Affected by Hurricane Season 2017</a></p>

<p>&nbsp;</p>

<p><a href="https://www.tasanet.org/site/Default.aspx?PageID=1026" target="_blank">Hurricane Harvey Resources for #TXED</a></p>

<p>&nbsp;</p>

<p><a href="http://www.readyharris.org/" target="_blank">Harris County Office of Homeland Security and Emergency Management</a></p>

<p>&nbsp;</p>

<p>&nbsp;</p>

<p><strong style="font-size: 18px;">Disaster Recovery Training Opportunities</strong></p>

<p>&nbsp;</p>

<div><a href="/Assets/greater-houston-area-post-harvey-trauma-training.pdf" target="_blank">Greater Houston Area Post-Harvey Trauma Training&nbsp; Counseling Resources</a></div>

<div>&nbsp;</div>

<p>&nbsp;</p>

<p><span style="font-size: 18px;"><strong>Donation Links to Help School Districts Affected by Hurricane Harvey</strong></span><br />
&nbsp;</p>

<div><a href="https://docs.google.com/forms/d/e/1FAIpQLSeZaxeMW8RRHrFtWzm2g3eK_2cg7MRQ7vFruJ1fr_dEL3CDzQ/viewform?usp=sf_link" target="_blank">Support 4 Our Schools</a></div>

<div>&nbsp;</div>

<div><a href="https://help.goarts.org/" target="_blank">Music Program Relief</a></div>

<div>&nbsp;</div>

<p>&nbsp;</p>

<p><strong><span style="font-size: 18px;">Additional Resources</span></strong></p>

<p>&nbsp;</p>

<p><a href="/Assets/best-practices-for-reacting-to-a-disaster.pdf" target="_blank">Best Practices for Reacting to a Disaster</a></p>

<p>&nbsp;</p>

<p><a href="/Assets/child-trauma-resources.pdf" target="_blank">Child Trauma Resources</a></p>

<p>&nbsp;</p>

<p><a href="http://www.readyharris.org/News-Information/Ready-Harris-News/Post/27455" target="_blank">Disaster Recovery Centers Open in Cypress and Houston Areas</a></p>

<p>&nbsp;</p>

<p><a href="/Assets/edgar-guidance-on-non-competitive-procurement-wit.pdf" target="_blank">EDGAR Guidance on Non-competitive Procurement with Federal Funds During an Emergency</a></p>

<p>&nbsp;</p>

<p><a href="/Assets/fema-public-assistance-ppt.pdf" target="_blank"><span style="color: rgb(0, 0, 238); text-decoration-line: underline;">FEMA Public Assistance Program and Policy Guide &ndash; DR 4332</span></a></p>

<p>&nbsp;</p>

<p><a href="/Assets/greater-houston-after-the-storm-2017(1).pdf" target="_blank">Greater Houston After The Storm&ndash;2017</a></p>

<p>&nbsp;</p>

<p><a href="http://harrisrecovery.org/" target="_blank">Harris County Recovery Network</a></p>

<p>&nbsp;</p>

<p><a href="/Assets/hurricane-harvey-impact-brief-112817.pdf" target="_blank">Impact of Hurricane Harvey on Mental Health, Learning, and Schools Brief</a></p>

<p>&nbsp;</p>

<p><a href="/Assets/resources-for-dealing-with-holiday-stressors120117.docx">Resources for Dealing with Holiday Stressors</a></p>

<p>&nbsp;</p>

<p><a href="/Assets/resources-for-students-and-staff-recovering-from.pdf" target="_blank">Resources for Students and Staff Recovering from Natural Disaster</a></p>

<p>&nbsp;</p>

<p><a href="/Assets/femap1000aug2017508.pdf" target="_blank">Safer, Stronger, Smarter: A Guide to Improving School Natural Hazard Safety, FEMA P-1000</a></p>

<p>&nbsp;</p>

<p><a href="/Assets/hurricane-harvey-faq09-14-2017.pdf" target="_blank">TEA Hurricane Harvey Guidance and FAQ: Impact on Federal Grant Funds</a></p>

                <div class="clear"></div>
            </div>
        </div>
    </div>
    <div class="clearbody"></div>
</div>



            
<div id="footergrid" class="contentwidth">
    <div class="footergridleft no-zoom">
        <div class="footeraddress">
            <div class="address">7145 West Tidwell Road | Houston, Texas 77092-2096 | 713.462.7708</div>
            <div class="address">McKinney Conference Center: <a href="https://www.google.com/maps/place/7200+Northwest+Dr,+Houston,+TX+77092/29.8490448,-95.4986058,17z/data=!3m1!4b1!4m2!3m1!1s0x8640c5f2ad3febed:0x57f2f7265ed1d125" target="_blank">7200 Northwest 100 Drive | Houston, Texas 77092</a></div>
        </div>
    </div>
    <div class="footergridright no-zoom">
        <div class="footergridmennu"><a href="/feedback">Feedback </a> <a href="/terms-privacy">Terms and Privacy </a> <a href="/contact-us">Contact Us</a></div>
    </div>
</div>
        </div>
        
<div id="footer" class="contentwidth">
    <div class="top no-zoom"><!--2018-->&copy; Region 4 Education Service Center</br> ISO 9001:2015 Certified</div>
    <div class="bottom no-zoom"><a href="http://www.digitalfunction.com" class="dficon" target="_blank" rel="nofollow">powered by Kalibrate .NET Framework</a></div>
</div>


    </div>

    <script type="text/javascript">
      var _gaq = _gaq || [];
    _gaq.push(['_setAccount', 'UA-17410682-1']);
    _gaq.push(['_setDomainName', '.esc4.net']);
    _gaq.push(['_trackPageview']);

    (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    })();

</script>


    
</body>
</html>





