function toggle_down(targetId) {
	target = document.getElementById(targetId);
	if (target.style.display == 'block'){
		target.style.display='none';
	} else {
		target.style.display='block';
	}
}	