// JavaScript Document
function open_aba (aba) {
	for ( var i = 1; i < 5; i++ ) {
		if ( aba == i ) document.getElementById( 'table_botton_index' + i ).style.display = '';
		else document.getElementById( 'table_botton_index' + i ).style.display = 'none';
	}
}

