function puldown (boxID) {
	bElements = document.getElementById(boxID);
	if(bElements != null){
		disp=(bElements.style.display=="block")?"none":"block";
		bElements.style.display = disp;
	}
}
