// JavaScript Document

  /*色別リスト説明文*/
function showLayer(objId){
if (document.getElementById){
tar=document.getElementById(objId);
tar.style.visibility="visible";
tar.style.display="inline";
}
}

function hideLayer(objId){
if (document.getElementById){
tar=document.getElementById(objId);
tar.style.visibility="hidden";
tar.style.display="none";
}
}


