function showSessionText()
{
    showElement("session-full-l");
    showElement("session-full-r");
    hideElement("session-read-more");
}

function hideSessionText()
{
    hideElement("session-full-l");
    hideElement("session-full-r");
}

function showElement(id) 
{
    document.getElementById(id).style.display = "block";
}

function hideElement(id) 
{
    document.getElementById(id).style.display = "none";
}

function printReadMore()
{
    document.write("<a id='session-read-more' onmousedown='showSessionText()'>READ MORE</a>");
}

function printAddy(who)
{
    document.write("<a href=\"mailto:");
    document.write(who);
    document.write("&#64;" + "willfreeman.dk\">");
    document.write(who);
    document.write("&#64;" + "willfreeman.dk</a>")
}


