function toggle_options () {
	o = document.getElementById('options');
	o.style.display = o.style.display == 'block' ? 'none' : 'block';
}
