
	function toggleOptions() {
		
		var target = document.getElementById("sopts");
		
		if (target) {
			if(target.style.display != 'block') target.style.display = 'block';
			else target.style.display = 'none';
			
		}
		
		
	}
