function ChangeStatus(topic) {



	if (document.getElementById(topic).style.display == String ('block')) {

		document.getElementById(topic).style.display = String ('none');

	}else{

		document.getElementById(topic).style.display=String ('block');

	}



}
