// Blank lines and comments stripped to reduce size.
// Contact contact@SpiritAndTruth.org for commented source files.
var undefined;

// Determine where to find global variables.
// (We don't use 'top' because that will fail within a foreign frame.)
if ( ! window.wlx )
    {
    for ( 
        var i = 0, ancestor = window ; 
        i < 10 && ancestor != undefined && !window.wlx ; 
        ancestor = ancestor.parent, i++ 
        )
        {
        if ( ancestor.isGlobal ) window.wlx = ancestor
        }
    }
if (! window.wlx) window.wlx = navigator

var style = 'styles.css'
if ( wlx.wlx_textSize == undefined )
    {
    wlx.wlx_textSize = 'medium'
    }
else if ( wlx.wlx_textSize == 'large' )
    {
    style = 'stylesl.css'
    }
else if ( wlx.wlx_textSize == 'huge' )
    {
    style = 'stylesh.css'
    }
else if ( wlx.wlx_textSize == 'small' )
    {
    style = 'styless.css'
    }

document.writeln( '<link rel=stylesheet type="text/css" HREF="' + style + '">')

