function showTotal(){

jsQuant1 = document.OrderForm.Quantity1.value-0;
jsQuant2 = document.OrderForm.Quantity2.value-0;
jsQuant3 = document.OrderForm.Quantity3.value-0;

if (jsQuant1.length == 0) jsQuant1 = 0;
if (jsQuant2.length == 0) jsQuant2 = 0;
if (jsQuant3.length == 0) jsQuant3 = 0;

jsPrice1 = 24.95;
jsPrice2 = 24.95;
jsPrice3 = 10.00;

jsSubTote1 = jsQuant1 * jsPrice1;
jsSubTote2 = jsQuant2 * jsPrice2;
jsSubTote3 = jsQuant3 * jsPrice3;

jsSubtotal =  jsSubTote1 + jsSubTote2 + jsSubTote3;

jsTotal1 = jsSubtotal + 5.00;
jsSubtotal1 = jsSubtotal.toFixed(2);
jsShipping = "5.00";
jsTotal1 = jsTotal1.toFixed(2);

document.OrderForm.subtotal.value = "$" + jsSubtotal1;
document.OrderForm.shipping.value = "$" + jsShipping;
document.OrderForm.total.value = "$" + jsTotal1;

}

