<!--
function calc()
{
 var c0 = new Array(660,910,1160,1411,1664,1906,2152,2398,2642,2646,5106);
 var c1 = new Array(833,1090,1346,1605,1863,2113,2363,2618,2865,2867,5389);
 var c2 = new Array(839,1103,1367,1630,1894,2150,2412,2667,2928,2929,5513);
 var c3 = new Array(846,1117,1386,1658,1929,2193,2456,2724,2984,2991,5637);
 var c4 = new Array(852,1129,1407,1683,1960,2230,2505,2773,3048,3062,5779);
 var sp = new Array(231.85,318.57,373.43,614.13);
t = 0;
if(eval(document.calcFORM.col.value) == 0) {t =c0[document.calcFORM.qua.selectedIndex];}
if(eval(document.calcFORM.col.value) == 1) {t =c1[document.calcFORM.qua.selectedIndex];}
if(eval(document.calcFORM.col.value) == 2) {t =c2[document.calcFORM.qua.selectedIndex];}
if(eval(document.calcFORM.col.value) == 3) {t =c3[document.calcFORM.qua.selectedIndex];}
if(eval(document.calcFORM.col.value) == 4) {t =c4[document.calcFORM.qua.selectedIndex];}
s = sp[document.calcFORM.des.selectedIndex] * document.calcFORM.qua.value / 100;
document.calcFORM.total.value = t;
document.calcFORM.each.value = (Math.round(t * 100 / document.calcFORM.qua.value)) /100;
document.calcFORM.ship.value = s;
r =  t + s;
document.calcFORM.tresult.value = (Math.round(r *100))/100;
document.calcFORM.eresult.value = (Math.round(r * 100 / document.calcFORM.qua.value)) /100;

}
// -->


