function swap_content(span) {
    displayType = ( document.getElementById(span).style.display == 'none' ) ? 'block' : 'none';
    document.getElementById(span).style.display = displayType;
}

function change_content(span, type) {
    document.getElementById(span).style.display = type;
}


