function updateItemTotal(itemid,price,quantity) {
total = price*quantity;
document.getElementById('total'+itemid).value=total.toFixed(2);
document.getElementById('dispTotal'+itemid).innerHTML=total.toFixed(2);
getEndtotal();
}