
function expand(toexpand) {
	thebox=getObjRef(toexpand);
	if (thebox.className=='boxBlue') {
		thebox.className='boxBlueCollasped';
	}
	else {
		thebox.className='boxBlue';
	}
}