function collapse(id) {
	var obj = document.getElementById(id);
	if (obj.style.display=='none') {
		obj.style.display = 'block';
		//obj.setAttribute('style','display:block;');
	} else {
		//obj.setAttribute('style','display:none;');
		obj.style.display = 'none';
	}
}