<!--
	function unfold(thisObject) {
		var items = document.all.item("list");
		max = items.length;
		i=0;
		while(i<max) {
			if (i==thisObject.name) {
				thisObject.className='showList';
		  	} else {
		  		items(i).className='defaultStyles';
		  	}
		i++;
		}
	}
	
	function checkMark(thisObject) {
		if (thisObject.marked!='yes') {
			thisObject.style.textDecoration = 'none';
		}
	}
	
	function mark(thisObject) {
		var as = document.all.item("aHeader");
		max = as.length;
		i=0;
		while(i<max) {
			if(as(i).name!=thisObject.name) {
				as(i).marked='no';
				as(i).style.textDecoration ='none';
			}
			i++;
		}
		thisObject.marked='yes';
	}

	
	
	
	
	
	//-->



