function show_hide_layers (id, action) {
	if (action == 'show') document.getElementById(id).style.visibility = 'visible';
	else document.getElementById(id).style.visibility = 'hidden';
}
