/*
 * AGORIA: 縮約表示制御
 *
 * Copyright (C) 2007 Business Breakthrough,Inc.
 * Create: 2007/06/02
 *
 */

function agoria_readMore(buttonId,etcId,bodyId,moreCaption,closeCaption)
{
	var buttonObj = $(buttonId) ;
	var etcObj = $(etcId) ;
	var bodyObj = $(bodyId) ;
	
	if (etcObj.style.display == "none") {
		etcObj.style.display = "inline" ;
		bodyObj.style.display = "none" ;
		buttonObj.innerHTML = moreCaption ;
	} else {
		etcObj.style.display = "none" ;
		bodyObj.style.display = "inline" ;
		buttonObj.innerHTML = closeCaption ;
	}
}



