
<!--
function cent(amount) {
// returns the amount in the .99 format
   return (amount == Math.floor(amount)) ? amount + '.00' : (  (amount*10 == Math.floor(amount*10)) ? amount + '0' : amount);
}

function update(form) {
    whatQuantity = form.quantity.selectedIndex;
    form.unitcost.value = 24.00;
      
    var total1 = (form.quantity.options[whatQuantity].value - 0) * form.unitcost.value;
    total1 = Math.floor(total1 * 100)/100;
    form.total1.value = "$" + cent(total1);
    
    
}

function orderreset()  {

document.OF.quantity.selectedIndex = 0;
document.OF.total1.value = "";
	
	}


	
//-->