<!--
function calc()
{
 var c0 = new Array(650,945,1242,1538,1832,2129,2425,2724,3016,3080,5973);
 var c1 = new Array(822,1126,1428,1729,2031,2336,2635,2936,3239,3301,6257);
 var c2 = new Array(829,1138,1447,1758,2066,2373,2685,2993,3303,3363,6381);
 var c3 = new Array(835,1152,1468,1782,2097,2416,2728,3042,3358,3434,6522);
 var c4 = new Array(842,1165,1487,1811,2133,2453,2778,3099,3422,3496,6646);
 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;

}
// -->


