function InputBgSet(item,item_action) {

  if (item_action == 1) {
      item.style.color = '#000000';
      item.style.backgroundColor = '#FFFFCC';
  } else if (item_action == 2) {
      item.style.color = '#336699';
      item.style.backgroundColor = '#FFFFFF';
  }
}