﻿// JScript ファイル

function DisplayTable(id){
  var table;
  table = document.getElementById(id + 'price');
  if(table.className == 'minus'){
    table.className = 'plus'
    document.getElementById(id + 'pls').innerHTML = '+'
  } else {
    table.className = 'minus'
    document.getElementById(id + 'pls').innerHTML = '-'
  }
}

