// JavaScript Document

function olss_hide(id) {
		document.getElementById('olss-hide-' + id).style.display = 'none';
		document.getElementById('olss-show-' + id).style.display = 'inline';
		document.getElementById(id).style.display = 'none';
	}

	function olss_show(id) {
		document.getElementById('olss-hide-' + id).style.display = 'inline';
		document.getElementById('olss-show-' + id).style.display = 'none';
		document.getElementById(id).style.display = 'inline';
	}