﻿// JScript File
        function COMPENDIUM_getKeyword()
        {
        var keyword = '';
        var path = location.pathname;

        if ( !path || typeof path !== 'string' ) {
        return keyword;
        }

        var paths = path.split('/',3);

        if ( !paths || typeof paths[2] === 'undefined' ) {
        return path;
        }
        return paths[2];
        }
        
        var kw = COMPENDIUM_getKeyword();
        //window.alert(kw);
        if(kw == "read-bible-contest-entries")
        {
            document.write("<link rel='stylesheet' type='text/css' href='http://biblecontest.newlivingtranslation.com/CSS/webToPostBlog.css' />");
        }
        else
        {
            document.write("<link rel='stylesheet' type='text/css' href='http://pathmakermarketing.com/CSS/NLT/blog.css' />");
        }

