<!--
function Calc (f) {

// 初期処理

wk_kin = 0;

// ガラス面のみ

if (document.f.go_1_qty.selectedIndex > 0){
    wk_kin = wk_kin + 1250 * document.f.go_1_qty.selectedIndex;
 }

if (document.f.go_2_qty.selectedIndex > 0){
    wk_kin = wk_kin + 1500 * document.f.go_2_qty.selectedIndex;
 }

if (document.f.go_3_qty.selectedIndex > 0){
    wk_kin = wk_kin + 1750 * document.f.go_3_qty.selectedIndex;
 }

if (document.f.go_4_qty.selectedIndex > 0){
    wk_kin = wk_kin + 2000 * document.f.go_4_qty.selectedIndex;
 }

if (document.f.go_5_qty.selectedIndex > 0){
    wk_kin = wk_kin + 1500 * document.f.go_5_qty.selectedIndex;
 }

if (document.f.go_6_qty.selectedIndex > 0){
    wk_kin = wk_kin + 1750 * document.f.go_6_qty.selectedIndex;
 }

if (document.f.go_7_qty.selectedIndex > 0){
    wk_kin = wk_kin + 2000 * document.f.go_7_qty.selectedIndex;
 }

if (document.f.go_8_qty.selectedIndex > 0){
    wk_kin = wk_kin + 2500 * document.f.go_8_qty.selectedIndex;
 }

if (document.f.go_9_qty.selectedIndex > 0){
    wk_kin = wk_kin + 1750 * document.f.go_9_qty.selectedIndex;
 }

if (document.f.go_10_qty.selectedIndex > 0){
    wk_kin = wk_kin + 2000 * document.f.go_10_qty.selectedIndex;
 }

if (document.f.go_11_qty.selectedIndex > 0){
    wk_kin = wk_kin + 2500 * document.f.go_11_qty.selectedIndex;
 }

if (document.f.go_12_qty.selectedIndex > 0){
    wk_kin = wk_kin + 3000 * document.f.go_12_qty.selectedIndex;
 }

if (document.f.go_13_qty.selectedIndex > 0){
    wk_kin = wk_kin + 2000 * document.f.go_13_qty.selectedIndex;
 }

if (document.f.go_14_qty.selectedIndex > 0){
    wk_kin = wk_kin + 2500 * document.f.go_14_qty.selectedIndex;
 }

if (document.f.go_15_qty.selectedIndex > 0){
    wk_kin = wk_kin + 3000 * document.f.go_15_qty.selectedIndex;
 }

if (document.f.go_16_qty.selectedIndex > 0){
    wk_kin = wk_kin + 3500 * document.f.go_16_qty.selectedIndex;
 }

document.f.go_tax.value = wk_kin * 0.05;
document.f.go_totalPrice.value = wk_kin * 1.05;

// ガラス・サッシ・網戸

wk_kin = 0;

if (document.f2.gn_1_qty.selectedIndex > 0){
    wk_kin = wk_kin + 2500 * document.f2.gn_1_qty.selectedIndex;
 }

if (document.f2.gn_2_qty.selectedIndex > 0){
    wk_kin = wk_kin + 3000 * document.f2.gn_2_qty.selectedIndex;
 }

if (document.f2.gn_3_qty.selectedIndex > 0){
    wk_kin = wk_kin + 3500 * document.f2.gn_3_qty.selectedIndex;
 }

if (document.f2.gn_4_qty.selectedIndex > 0){
    wk_kin = wk_kin + 4000 * document.f2.gn_4_qty.selectedIndex;
 }

if (document.f2.gn_5_qty.selectedIndex > 0){
    wk_kin = wk_kin + 3000 * document.f2.gn_5_qty.selectedIndex;
 }

if (document.f2.gn_6_qty.selectedIndex > 0){
    wk_kin = wk_kin + 3500 * document.f2.gn_6_qty.selectedIndex;
 }

if (document.f2.gn_7_qty.selectedIndex > 0){
    wk_kin = wk_kin + 4000 * document.f2.gn_7_qty.selectedIndex;
 }

if (document.f2.gn_8_qty.selectedIndex > 0){
    wk_kin = wk_kin + 5000 * document.f2.gn_8_qty.selectedIndex;
 }

if (document.f2.gn_9_qty.selectedIndex > 0){
    wk_kin = wk_kin + 3500 * document.f2.gn_9_qty.selectedIndex;
 }

if (document.f2.gn_10_qty.selectedIndex > 0){
    wk_kin = wk_kin + 4000 * document.f2.gn_10_qty.selectedIndex;
 }

if (document.f2.gn_11_qty.selectedIndex > 0){
    wk_kin = wk_kin + 5000 * document.f2.gn_11_qty.selectedIndex;
 }

if (document.f2.gn_12_qty.selectedIndex > 0){
    wk_kin = wk_kin + 6000 * document.f2.gn_12_qty.selectedIndex;
 }

if (document.f2.gn_13_qty.selectedIndex > 0){
    wk_kin = wk_kin + 4000 * document.f2.gn_13_qty.selectedIndex;
 }

if (document.f2.gn_14_qty.selectedIndex > 0){
    wk_kin = wk_kin + 5000 * document.f2.gn_14_qty.selectedIndex;
 }

if (document.f2.gn_15_qty.selectedIndex > 0){
    wk_kin = wk_kin + 6000 * document.f2.gn_15_qty.selectedIndex;
 }

if (document.f2.gn_16_qty.selectedIndex > 0){
    wk_kin = wk_kin + 7000 * document.f2.gn_16_qty.selectedIndex;
 }

document.f2.gn_tax.value = wk_kin * 0.05;
document.f2.gn_totalPrice.value = wk_kin * 1.05;

}
//-->

<!--
   function checkData() {

// ０円チェックです。

if (document.f.go_totalPrice.value == 0){
    alert("１つ以上、サービスをお選び下さい");
    return false;
}
else{
    return true;
}

}

//-->

<!--
   function checkData2() {

// ０円チェックです。

if (document.f2.gn_totalPrice.value == 0){
    alert("１つ以上、サービスをお選び下さい");
    return false;
}
else{
    return true;
}

}

//-->
