// JavaScript Document

function rolldown(id) {
	obj=getObj(id);
	if(obj) obj.style.display = (obj.style.display=='block')?'none':'block';
}