// JavaScript Document

// GLOBAL VARS


// This function is for the PriceList.
function updateTotal() {

  var temptotal = new Number(document.pricelist.baseprice.value);
	var numItems = document.pricelist.item.length;
	for (var x=0; x<numItems; x++){
		if (document.pricelist.item[x].checked) {
			var tempPrice = new Number(document.pricelist.item[x].value)
			temptotal = temptotal + tempPrice;
		}
	}
	document.pricelist.Kokonaishinta.value = temptotal;
}