Personnellement, par simplicité, j'irais avec jQuery pour faire ça...
http://api.jquery.com/toggle/
http://api.jquery.com/css/
avec un HTML du genre
<td class="table_map"></td>
$('#idDeMonBouton').toggle(function() {
$('.table_map').css("border","0");
}, function() {
$('.table_map').css("border","1");
});
http://api.jquery.com/toggle/
http://api.jquery.com/css/
avec un HTML du genre
<td class="table_map"></td>