function toggleDiv( name )
{
    theDiv = document.getElementById( name );
    if( theDiv.style.display == 'block' ) {
        theDiv.style.display = 'none';
    } else {
        theDiv.style.display = 'block';
    }
}
