
function moreDisp(id,cur){
	var o=document.getElementById(id);
	if(!o){return false;}
	if(!o.style.display.length){
		o.moreDisp=0;
	}
	if(o.style.display=='none'){
		o.moreDisp=0;
	}
	if(o.style.display=='block'){
		o.moreDisp=1;
	}
    if(o.moreDisp==1){
		o.moreDisp=0;
		o.style.display='none';
		cur.firstChild.nodeValue='もっと見る▼';
	}
	else{
		o.moreDisp=1;
		o.style.display='block';
		cur.firstChild.nodeValue='もとに戻す▲';
	}
	return false;
}

