function getFooterAddress( text )
{

    // Description: Retrieves a contact link for the page.
    //              The mail reference is split so 'mailsniffers' get a harder time
    //              to find a full address.
    //
    // Arguments:   string 'text'
    //              Will be the text of the actual link in, '<a>text</a>'
    //              If the text is omitted or undefined a default text is set.

    if( text == undefined || text == null )
    {
        text = '-UNKNOWN-';
    }
    var str = '<a class="bildtext" href="mailto:';
    str += 'fotograf';
    str += '@johannalagnevall';
    str += '.com">';
    str += text;
    str += '@johannalagnevall';
    str += '.com';
    str += '</a>';
    document.write( str );
};
function getContactAddress( text )
{

    // Description: Retrieves a contact link for the page.
    //              The mail reference is split so 'mailsniffers' get a harder time
    //              to find a full address.
    //
    // Arguments:   string 'text'
    //              Will be the text of the actual link in, '<a>text</a>'
    //              If the text is omitted or undefined a default text is set.

    if( text == undefined || text == null )
    {
        text = 'TEXT IS NOT SET';
    }
    var str = '<a href="mailto:';
    str += 'fotograf';
    str += '@johannalagnevall';
    str += '.com">';
    str += text;
    str += '</a>';
    document.write( str );
};
