function CalculateTotals(){
f=document.orderform;
f.total1.value=(parseFloat((f.qty1.value)*10)).toFixed(2);
f.total2.value=(parseFloat((f.qty2.checked)*(f.qty1.value)*15)).toFixed(2);
f.total3.value=(parseFloat((f.qty3.checked)*(f.qty1.value)*2)).toFixed(2);
f.total4.value=(parseFloat((f.qty4.checked)*(f.qty1.value)*1)).toFixed(2);
f.total5.value=(parseFloat((f.qty5.checked)*(f.qty1.value)*2)).toFixed(2);
f.total6.value=(parseFloat((f.qty6.value)*5)).toFixed(2);
f.total7.value=(parseFloat((f.qty7.checked)*(f.qty6.value)*1)).toFixed(2);
f.total8.value=(parseFloat((f.qty8.checked)*(f.qty6.value)*1)).toFixed(2);
f.total9.value=(parseFloat((f.qty9.checked)*(f.qty6.value)*1)).toFixed(2);
f.sh.value =(parseFloat(f.sh.value)).toFixed(2);
f.grandtotal.value=(parseFloat(f.total1.value)
+parseInt(f.total2.value)
+parseInt(f.total3.value)
+parseInt(f.total4.value)
+parseInt(f.total5.value)
+parseInt(f.total6.value)
+parseInt(f.total7.value)
+parseInt(f.total8.value)
+parseInt(f.total9.value)
+parseFloat(f.sh.value)).toFixed(2);}



