function keisan(){

	// 設定開始

	// サイズ長さ1
	var size1 = document.form1.sizel.value;

	// サイズ幅
	var size2 = document.form1.sizew.value;

	// サイズ高さ
	var size3 = document.form1.sizeh.value;

	// 合計を計算
	var total = Math.round(parseInt(size1) * parseInt(size2) * parseInt(size3) * 1.04 / 1000 );

	// 設定終了

  document.form1.sizel.value = size1;
  document.form1.sizew.value = size2;
  document.form1.sizeh.value = size3;
  if ( total > 0 ) {
    document.form1.weightof.value = total; // 合計を「weightof」に
  } else {
    document.form1.weightof.value = 0; // sizeのいずれかが0の場合0を表示
  }
}



function ShowPic(sImage)
{
  document.ShowRoom.src = sImage;
}

