function hider(target){
	var table = document.getElementById('hide_'+target);
	if (table.style.display == ''){		// already visible -> hide
		table.style.display = 'none';
	}else{
		table.style.display = '';
	}
	return false;
}

