<!--
	function showExpandable(id){
		var div = document.getElementById("divExpandable" + id)
		if(div.style.display == "none"){
			div.style.display = "block"
		} else{
			div.style.display = "none"
		}
	}
	
	// NOTE: calling page must delcare and set ExpandableCount to use these two functions
	function showAllExpandable(){
		for(var i = 1; i <= ExpandableCount; i++){
			document.getElementById("divExpandable" + i).style.display = "block"
		}
	}
	
	function hideAllExpandable(){
		for(var i = 1; i <= ExpandableCount; i++){
			document.getElementById("divExpandable" + i).style.display = "none"
		}
	}
//-->