var LastExpanded = "-1";

function sectionToggle(id){
	
	var browsercode = (ns6 || ns7 || mz7)?"table-cell":"block";

	if (LastExpanded != id){

		if(parseInt(LastExpanded) >= 0)
			document.getElementById(LastExpanded).style.display = 'none';
		
		document.getElementById(id).style.display = browsercode;
		LastExpanded = id;
	}else{
		document.getElementById(id).style.display = 'none';
		LastExpanded = "-1";
	}

}
