// Blank lines and comments stripped to reduce size.
// Contact contact@SpiritAndTruth.org for commented source files.
var undefined;
function X( anchor )
    {
    XALONE( anchor );
    return;
    }
function onLoad()
    {
    XALONE()
    return;
    }
function goUrl( anchor )
    {
    if ( anchor.substring( 0, 5 ) == 'http:' )
        {
        window.location.href = anchor;
        return;
        }
    if ( anchor.substring( 0, 6 ) == 'https:' )
        {
        window.location.href = anchor;
        return;
        }
    if ( anchor.substring( 0, 4 ) == 'www.' )
        {
        window.location.href = anchor;
        return;
        }
    else if ( anchor.substring( 0, 5 ) == 'file:' )
        {
        window.location.href = anchor;
        return;
        }
    else if ( anchor.substring( 0, 4 ) == 'ftp:' )
        {
        window.location.href = anchor;
        return;
        }
    else if ( anchor.substring( 0, 1 ) == '\\' )
        {
        window.location.href = anchor;
        return;
        }
    else if ( anchor.substring( 0, 1 ) == '\.' )
        {
        window.location.href = anchor;
        return;
        }
    }

