function show_arrow (bid) {
	document.getElementById(bid).style.visibility = 'visible';
}
function hide_arrow (bid) {
	document.getElementById(bid).style.visibility = 'hidden';
}
