function calcPrice(){
/*
	if (document.CALC_FORM.) {
alert("`FbNON");
	}
	else {
alert("`FbNOFF");
	}
*/
price_a = 504;
price_b = 525;
price_c = 735;
price_d = 189;
price_e = 210;
//alert("PΏ\n" + "€iA = " + price_a + "\n€iB = " + price_b + "\n€iC = " + price_c + "\n€iD = " + price_d + "\n€iE = " + price_e);

	// όΝ€iπζΎ
	num_a = eval(document.CALC_FORM.NUM_A.value);
	num_b = eval(document.CALC_FORM.NUM_B.value);
	num_c = eval(document.CALC_FORM.NUM_C.value);
	num_d = eval(document.CALC_FORM.NUM_D.value);
	num_e = eval(document.CALC_FORM.NUM_E.value);

	// e€iΜΰzπvZ
	total_price_a = price_a * num_a;
	total_price_b = price_b * num_b;
	total_price_c = price_c * num_c;
	total_price_d = price_d * num_d;
	total_price_e = price_e * num_e;

	// e€iΜvZΚπ\¦
	document.CALC_FORM.PRICE_A.value = total_price_a;
	document.CALC_FORM.PRICE_B.value = total_price_b;
	document.CALC_FORM.PRICE_C.value = total_price_c;
	document.CALC_FORM.PRICE_D.value = total_price_d;
	document.CALC_FORM.PRICE_E.value = total_price_e;

	// v
	result = (total_price_a) + (total_price_b) + (total_price_c) + (total_price_d) + (total_price_e);
	document.CALC_FORM.TOTAL.value = result;
}