﻿/**
 * CD情報処理系関数群
 **/
 
function fncSelectTargetCd ( targetId )
{
  objForm = document.getElementById ( "CD_LIST_FORM" );
  objForm.ID.value = targetId;
  
  objForm.submit ( );
  
  return false;
}

