function floorCalc()
{
var wide = document.estimate.width.value;
var side = document.estimate.length.value;
var money = document.estimate.price.value;
var area = wide * side;
var temptotalArea = (area * .10)+ area;
var temptotalCost = temptotalArea * money;
var totalArea = Math.round(temptotalArea*100)/100;
var totalCost = Math.round(temptotalCost*100)/100;
document.estimate.material.value = totalArea + " sq.ft.";
document.estimate.cost.value = "$"+totalCost;
}