function toggle (theId) {
    if ($(theId).style.display == 'none') {
        $(theId).style.display = 'block';
    } else $(theId).style.display = 'none';
    return false;
}