// 要素表示
function showElement(strID)
{
	var strLinkID	= strID + "_link";
	var strTextID	= strID + "_text";
	document.getElementById(strLinkID).style.display = "none";
	document.getElementById(strTextID).style.display = "block";
}
