function expand(o) {
	currentObj = document.getElementById(o);

			if (currentObj.style.display != 'block' && currentObj.style.display != 'inline') {
				currentObj.style.display = 'block'; 
			} else {
				currentObj.style.display = 'none';
			}
	}