function block_none (id) {
	thedivd = document.getElementById(id);
	thedivd.style.display = (thedivd.style.display == 'block') ? 'none' : 'block';
}
