	function np_cc_showMore(id, showexpand){
		varexpand = ('np_cc_expand' + id);
		varcollapse = ('np_cc_collapse' + id);
		if( showexpand != 0 ) {
			document.getElementById(varexpand).style.display = "block";
			document.getElementById(varcollapse).style.display = "none";
		} else {
			document.getElementById(varexpand).style.display = "none";
			document.getElementById(varcollapse).style.display = "block";
		}
	}