
<!DOCTYPE HTML>
<html>
<head>
    <meta charset="UTF-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /><title>Prosperity Gospel preacher Joel Osteen to open megachurch to Hurricane Harvey refugees after public... - Linkis.com</title>
    <style>
        html,body{margin:0;padding:0;height:100%;}
        body{overflow:hidden;}
        .show-panel,.show-page,.social-page,.confirmationBar{display:none;}
        .show-container{position:absolute;top:0;bottom:0;left:0;right:0;z-index:0;}
            </style>

    <meta property="og:image" content="https://www.rawstory.com/wp-content/uploads/2015/08/joel-osteen.png" />
<meta property="og:description" content="Who says public shaming doesn’t work? According to Crooks and Liars, Joel Osteen is singing a new tune after being blasted online for not allowing people into his church in the..." />
<meta property="og:title" content="Prosperity Gospel preacher Joel Osteen to open megachurch to Hurricane Harvey refugees after public shaming" />
<meta property="og:image:width" content="800" />
<meta property="og:image:height" content="430" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://www.rawstory.com/2017/08/prosperity-gospel-preacher-joel-osteen-to-open-megachurch-to-hurricane-harvey-refugees-after-public-shaming/" />
<meta property="og:site_name" content="Raw Story" />
<meta property="og:updated_time" content="2017-08-28T21:44:28-05:00" />
<meta property="og:image:secure_url" content="https://www.rawstory.com/wp-content/uploads/2015/08/joel-osteen.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:description" content="Who says public shaming doesn't work? According to Crooks and Liars, Joel Osteen is singing a new tune after being blasted online for not allowing people into his church in the midst of Hurricane Harvey. He is now reportedly preparing to open the doors of his Lakewood Megachurch in Houston to people seeking refuge from the storm. LGBTQ activist Charles Clymer posted an image of air mattresses in the Lakewood church, along with a caption that…" />
<meta name="twitter:title" content="Prosperity Gospel preacher Joel Osteen to open megachurch to Hurricane Harvey refugees after public shaming" />
<meta name="twitter:site" content="@rawstory" />
<meta name="twitter:image" content="https://www.rawstory.com/wp-content/uploads/2015/08/joel-osteen.png" />
<meta name="twitter:creator" content="@rawstory" />
<meta name="twitter:widgets:link-color" content="#000000" />
<meta name="twitter:widgets:border-color" content="#000000" />
<meta name="twitter:partner" content="tfwp" /><link href="https://www.rawstory.com/2017/08/prosperity-gospel-preacher-joel-osteen-to-open-megachurch-to-hurricane-harvey-refugees-after-public-shaming/" rel="canonical" />
<link href="http://linkis.com/rawstory.com/Prosperity_Gospel_pr.html" rel="canonical" />
<link href="https://www.rawstory.com/favicon.ico" rel="icon" type="image/x-icon" />
<link href="/images/apple/apple-touch-icon-144x144.png" rel="apple-touch-icon" size="144x144" />
<link href="/images/apple/apple-touch-icon-72x72.png" rel="apple-touch-icon" size="72x72" />
<link href="/images/apple/apple-touch-icon-57x57.png" rel="apple-touch-icon" size="57x57" />
    
    <script type="text/javascript">


    function __log(val){}

    function hihit(id) {
        if (id) {
            var url = "http://stat.linkis.com/log.php?id=" + id + "&r=" + Math.round(100000 * Math.random());
            var im = new Image();
            im.src = url;
        }
    }

    function mixpanelHit(event) {
        if (event) {
            mixpanel.track(event);
        }
    }


function refreshPage()
{
    location.href = location.href.split('#')[0];
    setTimeout(function(){
        if (window.hihit) hihit(2580);
    }, 10000);
}
function redirectPage(url)
{
    location.href = url;
}
function restoreUserAvatar(img, uid)
{
    img.onerror = null;
    img.setAttribute('data-orig-image', img.src);
    img.src = '/index/restore-avatar/uid/' + uid;

}
/**
 *
 * @param action
 * @param label
 * @param category
 * @param params
 *     - {int} [theme] - force set theme
 */
function lnEvent(action, label, category, params)
{
    
    if(action && action.push) {
        var hash   = lnEventGenerateHash((action[0][0] || '') + (action[0][1] || '') + (action[0][2] || ''));
            action = JSON.stringify(action);
    } else {
        var hash = lnEventGenerateHash((action || '') + (label || '') + (category || ''));
    }

    var path = ['', 'index', 'ln-event'].join('/');
    var e = function(str){ return str ? encodeURIComponent(str) : ''; };

    if(typeof(params) != 'undefined' && typeof(params.theme) != 'undefined'){
        var theme = params.theme;
    }else{
        var theme = window.LinkData ? LinkData.curTheme : 0;
    }

    if(typeof(params) != 'undefined' && typeof(params.version) != 'undefined'){
        var version = params.version;
    }else{
        var version = window.LinkData ? LinkData.themeVersion : '';
    }

    var is_author = window.LinkData ? LinkData.is_author : 0;

    params = params || {};

    (new Image()).src = path +
        '?c=' + e(category) +
        '&a=' + e(action) +
        '&l=' + e(label) +
        '&t=' + e(theme) +
        '&h='  + hash +
        '&v='  + e(version) +
        '&isa='  + e(is_author) +
        '&p='  + e(JSON.stringify(params)) +
        '&r=' + Math.random();
}

function lnEventGenerateHash(str) {
    var hash = '';
    var length = str.length;
    var step = (length < 5) ? 2 : Math.floor(length / 5);

    var codeSumFunction = function(codeSum) {
        var num = 0;
        for(var j = 0; j < codeSum.toString().length; j++) {
            num += parseInt(codeSum.toString().substr(j, 1), 10);
        }

        return num;
    };

    var codeSum = 0;
    for(var i = 0; i < length; i++) {
        var char = str.substr(i, 1);

        if(i % step == 0 && char != ' ') {
            var num = codeSumFunction(codeSum);
            hash += num + '' + char;
            codeSum = 0;
        } else {
            codeSum += str.charCodeAt(i);
        }
    }

    if(codeSum) hash += codeSumFunction(codeSum);

    return hash;
}

</script>
    
<script type="text/javascript">
window.NL_APP_DATA = {
    user:{
        isLogged: false,
        type: 'tw',
        hasTw: true
    },
    redirect_after_auth: '/',
    controller: 'index',
    action: 'show',
    cookies:{
        notification_enabled: 'notification_enabled'
    },
    show_welcome_popup: 0,
    show_ridder_welcome_popup: 0,
        
    show_comeback_popup: 0,
    stat_id: null,
    nopopups: 0,
    addThisSrc: 'http://s7.addthis.com/js/300/addthis_widget.js#async=1&pubid=',
    addThisId: 'ra-513082ca32a826c6',
    referrer_link: '',
    referrer_name: '',
    referrer_type: 0,
    cookie_domain: 'convey.pro',
	sessCookieName: 'LNSESS',
    popupsHtml: {},
    fbAppId: 318962828183539,
    isMobile: 0,
    dhSyncEnabled: 0,
    dhSyncHost: 'convey.pro',
    dhSyncCookies: [],
    showRestoreAccPopup: 0,
    showRestoreAccSuccessPopup: 0,
    ridderDomain: "ridder.co"};

window.onerror = function(msg, url, line, col, error_obj)
{
    hihit(3282);

    var path  = ['', 'index', 'js-error'].join('/');
    var page  = 'index/show';
    var theme = window.LinkData ? LinkData.curTheme : 0;

    (new Image()).src = path +
        '?m=' + encodeURIComponent(msg) +
        '&u=' + encodeURIComponent(url) +
        '&l=' + encodeURIComponent(line) +
        '&c=' + encodeURIComponent(col) +
        '&o=' + encodeURIComponent(error_obj) +
        '&p=' + encodeURIComponent(page) +
        '&t=' + encodeURIComponent(theme) +
        '&r=' + Math.random();
}

</script>

    
    <!-- start Mixpanel --><script type="text/javascript">(function(e,a){if(!a.__SV){var b=window;try{var c,l,i,j=b.location,g=j.hash;c=function(a,b){return(l=a.match(RegExp(b+"=([^&]*)")))?l[1]:null};g&&c(g,"state")&&(i=JSON.parse(decodeURIComponent(c(g,"state"))),"mpeditor"===i.action&&(b.sessionStorage.setItem("_mpcehash",g),history.replaceState(i.desiredHash||"",e.title,j.pathname+j.search)))}catch(m){}var k,h;window.mixpanel=a;a._i=[];a.init=function(b,c,f){function e(b,a){var c=a.split(".");2==c.length&&(b=b[c[0]],a=c[1]);b[a]=function(){b.push([a].concat(Array.prototype.slice.call(arguments,
            0)))}}var d=a;"undefined"!==typeof f?d=a[f]=[]:f="mixpanel";d.people=d.people||[];d.toString=function(b){var a="mixpanel";"mixpanel"!==f&&(a+="."+f);b||(a+=" (stub)");return a};d.people.toString=function(){return d.toString(1)+".people (stub)"};k="disable time_event track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config reset people.set people.set_once people.unset people.increment people.append people.union people.track_charge people.clear_charges people.delete_user".split(" ");
            for(h=0;h<k.length;h++)e(d,k[h]);a._i.push([b,c,f])};a.__SV=1.2;b=e.createElement("script");b.type="text/javascript";b.async=!0;b.src="undefined"!==typeof MIXPANEL_CUSTOM_LIB_URL?MIXPANEL_CUSTOM_LIB_URL:"file:"===e.location.protocol&&"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js".match(/^\/\//)?"https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js":"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js";c=e.getElementsByTagName("script")[0];c.parentNode.insertBefore(b,c)}})(document,window.mixpanel||[]);
        mixpanel.init("a79db6dbc791e52d29bb313083584288");</script><!-- end Mixpanel -->


</head>
<body data-controller="index" data-action="show" class="show">


<div class="show-container">

            <iframe id="show-iframe" src="http://www.rawstory.com/?p=1111965" border="0" frameborder="0" hspace="0" vspace="0" width="100%" height="100%" marginheight="0" marginwidth="0"></iframe>
    
    
<script type="text/javascript">
    var LinkData = {"id":447175298,"shortUrl":"yx4aGMM","longUrl":"https:\/\/www.rawstory.com\/2017\/08\/prosperity-gospel-preacher-joel-osteen-to-open-megachurch-to-hurricane-harvey-refugees-after-public-shaming\/","fullShortPath":"\/www.rawstory.com\/201\/yx4aGMM","baseAliasLink":"http:\/\/ln.is\/www.rawstory.com\/201\/yx4aGMM","baseShortAliasLink":"http:\/\/ln.is\/www.rawstory.com\/201\/yx4aGMM","caption":"He\\'s not motivated by shame. He\\'s worried about negative press impacting his brand & costing him $$.","author_id":1965288,"isTwitterLogged":true,"curTheme":1,"parentTheme":1,"originalTitle":"Prosperity Gospel preacher Joel Osteen to open megachurch to Hurricane Harvey refugees after public...","show_aw_popup":1,"popupTimer":3000,"saveClientStat":true,"showSilentPopup":1,"autopostVersion":"v2","linkSrcType":3,"srcTypeLabel":"autopost","splitCtaThemeVersion":1,"showVtwAw":1,"authorLinkLocale":"en","localeCurrentUser":"en","dgAuthWelcomeVersion":2,"udgGuestVersion":2,"autopost_base_href":"http:\/\/convey.pro"};
</script><script type="text/javascript">

    /** @var Themes */
    var Themes = {
        THEME_11: 11,
        THEME_12: 12,
        THEME_13: 13,
        THEME_14: 14,
        THEME_15: 15,
        THEME_16: 16,
        THEME_17: 17,
        THEME_18: 18,
        THEME_19: 19,
        THEME_20: 20
    };

    var LNG = LNG || {};
    LNG['caption'] = "Caption";
    LNG['show.empty_caption'] = "Empty caption";
    LNG['js.tools.blocker'] = "Please disable your pop-up blocker and redo your last action";


    var AUTH_PARAMS = {};
    var THEME_AUTH_PARAMS = {};


    var TWITTER_ENABLED = true;
</script>
    <div class="show-panel">
        <div class="panel-inner">Autoposted via <a href="http://convey.pro" target="_blank"><img src="/images/convey/logo@2x.png" alt="" class="panel-logo"></a></div>
        <div class="panel-close">
            <a href="javascript:void(0)" class="close-button icon-close js-panel-close" data-href="https://www.rawstory.com/2017/08/prosperity-gospel-preacher-joel-osteen-to-open-megachurch-to-hurricane-harvey-refugees-after-public-shaming/"></a>
            <div class="close-tooltip">
            <span class="tooltip-inner">
                Original URL:<br>
                <a href="https://www.rawstory.com/2017/08/prosperity-gospel-preacher-joel-osteen-to-open-megachurch-to-hurricane-harvey-refugees-after-public-shaming/" target="_blank">https://www.rawstory.com/2017/08/prosperity-gospel-preacher-joel-osteen-to-open-megachurch-to-hurricane-harvey-refugees-after-public-shaming/</a>
            </span>
            </div>
        </div>
    </div>


<!-- POPUPS -->




<!-- New popups Template -->
<div class="global-modal-popup js-modal-popup-container">
    <div class="popup-overlay"></div>
    <div class="popup-holder">
        <a href="javascript:void(0);" class="popup-close icon-close js-popup-close-default"></a>

        <div class="js-popups-container popup-container">
                    </div>

    </div>
</div>

</div>

<link media="all" rel="stylesheet" type="text/css" href="/css/autopost_theme_1.css" />



<script type="text/javascript" src="/js/prod/themes/all.js?v=d0d0"></script>

</body>
</html>
