// JavaScript Document
function fn_tabla1() {
	tabla_1_s.style.display = "none";
	tabla_1_c.style.display = "block";
	tabla_2_s.style.display = "block";
	tabla_2_c.style.display = "none";
	tabla_3_s.style.display = "block";
	tabla_3_c.style.display = "none";
}

function fn_tabla2 () {
	tabla_1_s.style.display = "block";
	tabla_1_c.style.display = "none";
	tabla_2_s.style.display = "none";
	tabla_2_c.style.display = "block";
	tabla_3_s.style.display = "block";
	tabla_3_c.style.display = "none";
}

function fn_tabla3 () {
	tabla_1_s.style.display = "block";
	tabla_1_c.style.display = "none";
	tabla_2_s.style.display = "block";
	tabla_2_c.style.display = "none";
	tabla_3_s.style.display = "none";
	tabla_3_c.style.display = "block";
}


// JavaScript Document
function fn_tabla1b() {
	tabla_1_sb.style.display = "none";
	tabla_1_cb.style.display = "block";
	tabla_2_sb.style.display = "block";
	tabla_2_cb.style.display = "none";
	tabla_3_sb.style.display = "block";
	tabla_3_cb.style.display = "none";
}

function fn_tabla2b() {
	tabla_1_sb.style.display = "block";
	tabla_1_cb.style.display = "none";
	tabla_2_sb.style.display = "none";
	tabla_2_cb.style.display = "block";
	tabla_3_sb.style.display = "block";
	tabla_3_cb.style.display = "none";
}

function fn_tabla3b () {
	tabla_1_sb.style.display = "block";
	tabla_1_cb.style.display = "none";
	tabla_2_sb.style.display = "block";
	tabla_2_cb.style.display = "none";
	tabla_3_sb.style.display = "none";
	tabla_3_cb.style.display = "block";
}



