function toggleMapDisplay (state) {
    if (state) {
        jQuery('.printMap').show();
    }
    else {
        jQuery('.printMap').hide();
    }
}
