// JavaScript Document

function calc()
{
	var availableCuFt=0;
	var usedCuFt=0;
	var nonStackableFt2=0;
	var nonStackableFt3=0;
	var StackableFt3=0;
	var totalFt3=0;
	var difference=0;
	var modifier=0;
	
	var lockerSqFt=25;
	var fiveByFiveSqFt=25;
	var fiveByTenSqFt=50;
	var fiveByFifteenSqFt=75;
	var tenByTenSqFt=100;
	var tenByFifteenSqFt=150;
	var tenByTwentySqFt=200;
	var tenByTwentyFiveSqFt=250;
	var tenByThirtySqFt=300;
	
	var lockerCuFt=100;
	var fiveByFiveCuFt=175;
	var fiveByTenCuFt=350;
	var fiveByFifteenCuFt=525;
	var tenByTenCuFt=700;
	var tenByFifteenCuFt=1050;
	var tenByTwentyCuFt=1400;
	var tenByTwentyFiveCuFt=1750;
	var tenByThirtyCuFt=2100;
	
	var lockerHeight=4;
	var regularHeight=9;
	var maxHeight=0;
	var stackLimit=0;
	var stackables=0;
	
	var roomSize=0;
	/*
	  0=no room		5=10x10
	  1=locker		6=10x15
	  2=5x5			7=10x20
	  3=5x10		8=10x25
	  4=5x15		9=10x30  
	*/
	
	var result="We're sorry but we do not currently offer a single storage unit with your needed capacity.";

	fillForm();

	nonStackableFt2 = parseInt(nonStackableSqFt());
	nonStackableFt3 = parseInt(nonStackableCuFt());
	stackableFt3 = parseInt(stackableCuFt());
	maxHeight = parseInt(checkHeight());
	stackables = stackable();
	
	if (nonStackableFt2 > tenByThirtySqFt)
	{
		availableCuFt = 0;
		stackLimit=100;
		roomSize = 10;
	}
	
	if (nonStackableFt2 < tenByThirtySqFt)
	{
		availableCuFt = tenByThirtyCuFt;
		stackLimit=1260;
		roomSize = 9;
	}
	
	if (nonStackableFt2 < tenByTwentyFiveSqFt)
	{
		availableCuFt = tenByTwentyFiveCuFt;
		stackLimit=1050;
		roomSize = 8;
	}
	
	if (nonStackableFt2 < tenByTwentySqFt)
	{
		availableCuFt = tenByTwentyCuFt;
		stackLimit=840;
		roomSize = 7;
	}
	
		if (nonStackableFt2 < tenByFifteenSqFt)
	{
		availableCuFt = tenByFifteenCuFt;
		stackLimit=630;
		roomSize = 6;
	}
	
	if (nonStackableFt2 < tenByTenSqFt)
	{
		availableCuFt = tenByTenCuFt;
		stackLimit=420;
		roomSize = 5;
	}
	
	if (nonStackableFt2 < fiveByFifteenSqFt)
	{
		availableCuFt = fiveByFifteenCuFt;
		stackLimit=315;
		roomSize = 4;
	}
	
	if (nonStackableFt2 < fiveByTenSqFt)
	{
		availableCuFt = fiveByTenCuFt;
		stackLimit=210;
		roomSize = 3;
	}
	
	if (nonStackableFt2 < fiveByFiveSqFt)
	{
		availableCuFt = fiveByFiveCuFt;
		stackLimit=105;
		roomSize = 2;
	}
	
	if (nonStackableFt2 < lockerSqFt)
	{
		availableCuFt = lockerCuFt;
		stackLimit=0;
		roomSize = 1;
	}
	
	if (stackables>27){roomSize=10}
	if (stackables<28){roomSize=9}
	if (stackables<25){roomSize=8}
	if (stackables<19){roomSize=7}
	if (stackables<13){roomSize=6}
	if (stackables<10){roomSize=5}
	if (stackables<6){roomSize=4}
	if (stackables<4){roomSize=3}
	if (stackables<2){roomSize=2}
	if (stackables<1){roomSize=1}
		
	totalFt3 = totalFt3 + stackableFt3 + nonStackableFt3;
	
	if(totalFt3==0){roomSize = 0}

	usedCuFt = availableCuFt - totalFt3;

	if (totalFt3>availableCuFt){roomSize++}
	if (maxHeight > 3 && roomSize==1){roomSize++}
	
	while (usedCuFt < 1)
	{
		if (roomSize==1){modifier = 75}
		if (roomSize < 6 && roomSize > 1){modifier = 175}
		if (roomSize < 10 && roomSize > 5){modifier = 350}
		if (roomSize > 9){modifier = (usedCuFt * -1) + 1}
		
		roomSize++;
		usedCuFt = usedCuFt + modifier;
	}	
	
	switch (roomSize)
	{
		case 0:
		result="You must make a selection before hitting the estimate button.";
		break;
		
		case 1:
		result="You will need one locker size unit to store your belongings.";
		break;
		
		case 2:
		result="You will need one 5 x 5 size unit to store your belongings.";
		break;
		
		case 3:
		result="You will need one 5 x 10 size unit to store your belongings.";
		break;
		
		case 4:
		result="You will need one 5 x 15 size unit to store your belongings.";
		break;
		
		case 5:
		result="You will need one 10 x 10 size unit to store your belongings.";
		break;
		
		case 6:
		result="You will need one 10 x 15 size unit to store your belongings.";
		break;
		
		case 7:
		result="You will need one 10 x 20 size unit to store your belongings.";
		break;
		
		case 8:
		result="You will need one 10 x 25 size unit to store your belongings.";
		break;
		
		case 9:
		result="You will need one 10 x 30 size unit to store your belongings.";
		break;
		
		default:
		result="We do not offer a single storage unit with your required capacity. Please contact your nearest Budge Self Storage to arrange a multiple unit rental."
		break;
	}

document.form.total.value=result;
}

function resetForm()
{
	document.form.acWindow.value="0"
	document.form.oven.value="0"
	document.form.dishwasher.value="0"
	document.form.microwave.value="0"
	document.form.smlFreezer.value="0"
	document.form.medFreezer.value="0"
	document.form.lrgFreezer.value="0"
	document.form.smlFridge.value="0"
	document.form.medFridge.value="0"
	document.form.lrgFridge.value="0"
	document.form.dryer.value="0"
	document.form.washer.value="0"
	document.form.comboWD.value="0"
	document.form.dayBed.value="0"
	document.form.singleBed.value="0"
	document.form.twinBed.value="0"
	document.form.queenBed.value="0"
	document.form.kingBed.value="0"
	document.form.cedarChest.value="0"
	document.form.chesterDrawers.value="0"
	document.form.dresser.value="0"
	document.form.flrLamp.value="0"
	document.form.tblLamp.value="0"
	document.form.nightStand.value="0"
	document.form.smlAreaRug.value="0"
	document.form.lrgAreaRug.value="0"
	document.form.vanity.value="0"
	document.form.smlWardrobe.value="0"
	document.form.lrgWardrobe.value="0"
	document.form.buffet.value="0"
	document.form.chinaCabinet.value="0"
	document.form.smlAreaRug2.value="0"
	document.form.lrgAreaRug2.value="0"
	document.form.smlTable.value="0"
	document.form.lrgTable.value="0"
	document.form.diningChair.value="0"
	document.form.pantryCabinet.value="0"
	document.form.utilityCabinet.value="0"
	document.form.mwStand.value="0"
	document.form.vegetableBin.value="0"
	document.form.bench.value="0"
	document.form.bookShelf.value="0"
	document.form.bookCaseDD.value="0"
	document.form.bookCaseSec.value="0"
	document.form.armChair.value="0"
	document.form.recliner.value="0"
	document.form.overstuffedChair.value="0"
	document.form.rockingChair.value="0"
	document.form.grandfatherClock.value="0"
	document.form.wallClock.value="0"
	document.form.fpEquip.value="0"
	document.form.ottoman.value="0"
	document.form.futon.value="0"
	document.form.hutch.value="0"
	document.form.flrLamp2.value="0"
	document.form.tblLamp2.value="0"
	document.form.smlAreaRug3.value="0"
	document.form.lrgAreaRug3.value="0"
	document.form.loveseat.value="0"
	document.form.sofa3seat.value="0"
	document.form.sofa4seat.value="0"
	document.form.sofaCorner.value="0"
	document.form.sofaSec.value="0"
	document.form.coffeeTable.value="0"
	document.form.endTable.value="0"
	document.form.computer.value="0"
	document.form.dvdPlayer.value="0"
	document.form.satelliteDish.value="0"
	document.form.portStereo.value="0"
	document.form.stereo.value="0"
	document.form.smlSpeakers.value="0"
	document.form.medSpeakers.value="0"
	document.form.lrgSpeakers.value="0"
	document.form.portTV.value="0"
	document.form.tv19.value="0"
	document.form.tv21.value="0"
	document.form.tvBig.value="0"
	document.form.babyCarriage.value="0"
	document.form.bassinett.value="0"
	document.form.childsBed.value="0"
	document.form.bunkBeds.value="0"
	document.form.childsChair.value="0"
	document.form.highChair.value="0"
	document.form.changingTable.value="0"
	document.form.cradle.value="0"
	document.form.crib.value="0"
	document.form.childsDresser.value="0"
	document.form.playPen.value="0"
	document.form.smlAreaRug4.value="0"
	document.form.lrgAreaRug4.value="0"
	document.form.stroller.value="0"
	document.form.childsTable.value="0"
	document.form.toybox.value="0"
	document.form.bench.value="0"
	document.form.bookcase4.value="0"
	document.form.bookcase6.value="0"
	document.form.officeChair.value="0"
	document.form.crendenza.value="0"
	document.form.desk2ped.value="0"
	document.form.desk1ped.value="0"
	document.form.fileCabLat2.value="0"
	document.form.fileCabLat3.value="0"
	document.form.fileCabLat4.value="0"
	document.form.fileCabLat5.value="0"
	document.form.fileCabVert2.value="0"
	document.form.fileCabVert4.value="0"
	document.form.portGrill.value="0"
	document.form.bigGrill.value="0"
	document.form.bicycle.value="0"
	document.form.dogHouse.value="0"
	document.form.gardenHose.value="0"
	document.form.gardenTools.value="0"
	document.form.ladderExt.value="0"
	document.form.ladderStep.value="0"
	document.form.lawnChair.value="0"
	document.form.pushMower.value="0"
	document.form.rideMower.value="0"
	document.form.outdoorTable.value="0"
	document.form.tableUmbrella.value="0"
	document.form.clothesBasket.value="0"
	document.form.exerciseEquip.value="0"
	document.form.boxFan.value="0"
	document.form.golfBag.value="0"
	document.form.pingPongTable.value="0"
	document.form.poolTable.value="0"
	document.form.suitcase.value="0"
	document.form.toolBox.value="0"
	document.form.trashCan.value="0"
	document.form.wagon.value="0"
	document.form.weights.value="0"
	document.form.smlBox.value = "0"
	document.form.medBox.value = "0"
	document.form.lrgBox.value = "0"
	document.form.smlBox2.value = "0"
	document.form.medBox2.value = "0"
	document.form.lrgBox2.value = "0"
	document.form.smlBox3.value = "0"
	document.form.medBox3.value = "0"
	document.form.lrgBox3.value = "0"
	document.form.smlBox4.value = "0"
	document.form.medBox4.value = "0"
	document.form.lrgBox4.value = "0"
	document.form.smlBox5.value = "0"
	document.form.medBox5.value = "0"
	document.form.lrgBox5.value = "0"
	document.form.smlBox6.value = "0"
	document.form.medBox6.value = "0"
	document.form.lrgBox6.value = "0"
	document.form.smlBox7.value = "0"
	document.form.medBox7.value = "0"
	document.form.lrgBox7.value = "0"
	document.form.smlBox8.value = "0"
	document.form.medBox8.value = "0"
	document.form.lrgBox8.value = "0"
	document.form.smlBox9.value = "0"
	document.form.medBox9.value = "0"
	document.form.lrgBox9.value = "0"
	document.form.smlBox10.value = "0"
	document.form.medBox10.value = "0"
	document.form.lrgBox10.value = "0"
	document.form.wardrobeBox.value = "0"
	document.form.total.value = ""
}

function fillForm()
{
	if (document.form.acWindow.value==""){document.form.acWindow.value="0"}
	if (document.form.oven.value==""){document.form.oven.value="0"}
	if (document.form.dishwasher.value==""){document.form.dishwasher.value="0"}
	if (document.form.microwave.value==""){document.form.microwave.value="0"}
	if (document.form.smlFreezer.value==""){document.form.smlFreezer.value="0"}
	if (document.form.medFreezer.value==""){document.form.medFreezer.value="0"}
	if (document.form.lrgFreezer.value==""){document.form.lrgFreezer.value="0"}
	if (document.form.smlFridge.value==""){document.form.smlFridge.value="0"}
	if (document.form.medFridge.value==""){document.form.medFridge.value="0"}
	if (document.form.lrgFridge.value==""){document.form.lrgFridge.value="0"}
	if (document.form.dryer.value==""){document.form.dryer.value="0"}
	if (document.form.washer.value==""){document.form.washer.value="0"}
	if (document.form.comboWD.value==""){document.form.comboWD.value="0"}
	if (document.form.dayBed.value==""){document.form.dayBed.value="0"}
	if (document.form.singleBed.value==""){document.form.singleBed.value="0"}
	if (document.form.twinBed.value==""){document.form.twinBed.value="0"}
	if (document.form.queenBed.value==""){document.form.queenBed.value="0"}
	if (document.form.kingBed.value==""){document.form.kingBed.value="0"}
	if (document.form.cedarChest.value==""){document.form.cedarChest.value="0"}
	if (document.form.chesterDrawers.value==""){document.form.chesterDrawers.value="0"}
	if (document.form.dresser.value==""){document.form.dresser.value="0"}
	if (document.form.flrLamp.value==""){document.form.flrLamp.value="0"}
	if (document.form.tblLamp.value==""){document.form.tblLamp.value="0"}
	if (document.form.nightStand.value==""){document.form.nightStand.value="0"}
	if (document.form.smlAreaRug.value==""){document.form.smlAreaRug.value="0"}
	if (document.form.lrgAreaRug.value==""){document.form.lrgAreaRug.value="0"}
	if (document.form.vanity.value==""){document.form.vanity.value="0"}
	if (document.form.smlWardrobe.value==""){document.form.smlWardrobe.value="0"}
	if (document.form.lrgWardrobe.value==""){document.form.lrgWardrobe.value="0"}
	if (document.form.buffet.value==""){document.form.buffet.value="0"}
	if (document.form.chinaCabinet.value==""){document.form.chinaCabinet.value="0"}
	if (document.form.smlAreaRug2.value==""){document.form.smlAreaRug2.value="0"}
	if (document.form.lrgAreaRug2.value==""){document.form.lrgAreaRug2.value="0"}
	if (document.form.smlTable.value==""){document.form.smlTable.value="0"}
	if (document.form.lrgTable.value==""){document.form.lrgTable.value="0"}
	if (document.form.diningChair.value==""){document.form.diningChair.value="0"}
	if (document.form.pantryCabinet.value==""){document.form.pantryCabinet.value="0"}
	if (document.form.utilityCabinet.value==""){document.form.utilityCabinet.value="0"}
	if (document.form.mwStand.value==""){document.form.mwStand.value="0"}
	if (document.form.vegetableBin.value==""){document.form.vegetableBin.value="0"}
	if (document.form.bench.value==""){document.form.bench.value="0"}
	if (document.form.bookShelf.value==""){document.form.bookShelf.value="0"}
	if (document.form.bookCaseDD.value==""){document.form.bookCaseDD.value="0"}
	if (document.form.bookCaseSec.value==""){document.form.bookCaseSec.value="0"}
	if (document.form.armChair.value==""){document.form.armChair.value="0"}
	if (document.form.recliner.value==""){document.form.recliner.value="0"}
	if (document.form.overstuffedChair.value==""){document.form.overstuffedChair.value="0"}
	if (document.form.rockingChair.value==""){document.form.rockingChair.value="0"}
	if (document.form.grandfatherClock.value==""){document.form.grandfatherClock.value="0"}
	if (document.form.wallClock.value==""){document.form.wallClock.value="0"}
	if (document.form.fpEquip.value==""){document.form.fpEquip.value="0"}
	if (document.form.ottoman.value==""){document.form.ottoman.value="0"}
	if (document.form.futon.value==""){document.form.futon.value="0"}
	if (document.form.hutch.value==""){document.form.hutch.value="0"}
	if (document.form.flrLamp2.value==""){document.form.flrLamp2.value="0"}
	if (document.form.tblLamp2.value==""){document.form.tblLamp2.value="0"}
	if (document.form.smlAreaRug3.value==""){document.form.smlAreaRug3.value="0"}
	if (document.form.lrgAreaRug3.value==""){document.form.lrgAreaRug3.value="0"}
	if (document.form.loveseat.value==""){document.form.loveseat.value="0"}
	if (document.form.sofa3seat.value==""){document.form.sofa3seat.value="0"}
	if (document.form.sofa4seat.value==""){document.form.sofa4seat.value="0"}
	if (document.form.sofaCorner.value==""){document.form.sofaCorner.value="0"}
	if (document.form.sofaSec.value==""){document.form.sofaSec.value="0"}
	if (document.form.coffeeTable.value==""){document.form.coffeeTable.value="0"}
	if (document.form.endTable.value==""){document.form.endTable.value="0"}
	if (document.form.computer.value==""){document.form.computer.value="0"}
	if (document.form.dvdPlayer.value==""){document.form.dvdPlayer.value="0"}
	if (document.form.satelliteDish.value==""){document.form.satelliteDish.value="0"}
	if (document.form.portStereo.value==""){document.form.portStereo.value="0"}
	if (document.form.stereo.value==""){document.form.stereo.value="0"}
	if (document.form.smlSpeakers.value==""){document.form.smlSpeakers.value="0"}
	if (document.form.medSpeakers.value==""){document.form.medSpeakers.value="0"}
	if (document.form.lrgSpeakers.value==""){document.form.lrgSpeakers.value="0"}
	if (document.form.portTV.value==""){document.form.portTV.value="0"}
	if (document.form.tv19.value==""){document.form.tv19.value="0"}
	if (document.form.tv21.value==""){document.form.tv21.value="0"}
	if (document.form.tvBig.value==""){document.form.tvBig.value="0"}
	if (document.form.babyCarriage.value==""){document.form.babyCarriage.value="0"}
	if (document.form.bassinett.value==""){document.form.bassinett.value="0"}
	if (document.form.childsBed.value==""){document.form.childsBed.value="0"}
	if (document.form.bunkBeds.value==""){document.form.bunkBeds.value="0"}
	if (document.form.childsChair.value==""){document.form.childsChair.value="0"}
	if (document.form.highChair.value==""){document.form.highChair.value="0"}
	if (document.form.changingTable.value==""){document.form.changingTable.value="0"}
	if (document.form.cradle.value==""){document.form.cradle.value="0"}
	if (document.form.crib.value==""){document.form.crib.value="0"}
	if (document.form.childsDresser.value==""){document.form.childsDresser.value="0"}
	if (document.form.playPen.value==""){document.form.playPen.value="0"}
	if (document.form.smlAreaRug4.value==""){document.form.smlAreaRug4.value="0"}
	if (document.form.lrgAreaRug4.value==""){document.form.lrgAreaRug4.value="0"}
	if (document.form.stroller.value==""){document.form.stroller.value="0"}
	if (document.form.childsTable.value==""){document.form.childsTable.value="0"}
	if (document.form.toybox.value==""){document.form.toybox.value="0"}
	if (document.form.bench.value==""){document.form.bench.value="0"}
	if (document.form.bookcase4.value==""){document.form.bookcase4.value="0"}
	if (document.form.bookcase6.value==""){document.form.bookcase6.value="0"}
	if (document.form.officeChair.value==""){document.form.officeChair.value="0"}
	if (document.form.crendenza.value==""){document.form.crendenza.value="0"}
	if (document.form.desk2ped.value==""){document.form.desk2ped.value="0"}
	if (document.form.desk1ped.value==""){document.form.desk1ped.value="0"}
	if (document.form.fileCabLat2.value==""){document.form.fileCabLat2.value="0"}
	if (document.form.fileCabLat3.value==""){document.form.fileCabLat3.value="0"}
	if (document.form.fileCabLat4.value==""){document.form.fileCabLat4.value="0"}
	if (document.form.fileCabLat5.value==""){document.form.fileCabLat5.value="0"}
	if (document.form.fileCabVert2.value==""){document.form.fileCabVert2.value="0"}
	if (document.form.fileCabVert4.value==""){document.form.fileCabVert4.value="0"}
	if (document.form.portGrill.value==""){document.form.portGrill.value="0"}
	if (document.form.bigGrill.value==""){document.form.bigGrill.value="0"}
	if (document.form.bicycle.value==""){document.form.bicycle.value="0"}
	if (document.form.dogHouse.value==""){document.form.dogHouse.value="0"}
	if (document.form.gardenHose.value==""){document.form.gardenHose.value="0"}
	if (document.form.gardenTools.value==""){document.form.gardenTools.value="0"}
	if (document.form.ladderExt.value==""){document.form.ladderExt.value="0"}
	if (document.form.ladderStep.value==""){document.form.ladderStep.value="0"}
	if (document.form.lawnChair.value==""){document.form.lawnChair.value="0"}
	if (document.form.pushMower.value==""){document.form.pushMower.value="0"}
	if (document.form.rideMower.value==""){document.form.rideMower.value="0"}
	if (document.form.outdoorTable.value==""){document.form.outdoorTable.value="0"}
	if (document.form.tableUmbrella.value==""){document.form.tableUmbrella.value="0"}
	if (document.form.clothesBasket.value==""){document.form.clothesBasket.value="0"}
	if (document.form.exerciseEquip.value==""){document.form.exerciseEquip.value="0"}
	if (document.form.boxFan.value==""){document.form.boxFan.value="0"}
	if (document.form.golfBag.value==""){document.form.golfBag.value="0"}
	if (document.form.pingPongTable.value==""){document.form.pingPongTable.value="0"}
	if (document.form.poolTable.value==""){document.form.poolTable.value="0"}
	if (document.form.suitcase.value==""){document.form.suitcase.value="0"}
	if (document.form.toolBox.value==""){document.form.toolBox.value="0"}
	if (document.form.trashCan.value==""){document.form.trashCan.value="0"}
	if (document.form.wagon.value==""){document.form.wagon.value="0"}
	if (document.form.weights.value==""){document.form.weights.value="0"}
	if (document.form.smlBox.value == ""){document.form.smlBox.value = "0"}
	if (document.form.medBox.value == ""){document.form.medBox.value = "0"}
	if (document.form.lrgBox.value == ""){document.form.lrgBox.value = "0"}
	if (document.form.smlBox2.value == ""){document.form.smlBox2.value = "0"}
	if (document.form.medBox2.value == ""){document.form.medBox2.value = "0"}
	if (document.form.lrgBox2.value == ""){document.form.lrgBox2.value = "0"}
	if (document.form.smlBox3.value == ""){document.form.smlBox3.value = "0"}
	if (document.form.medBox3.value == ""){document.form.medBox3.value = "0"}
	if (document.form.lrgBox3.value == ""){document.form.lrgBox3.value = "0"}
	if (document.form.smlBox4.value == ""){document.form.smlBox4.value = "0"}
	if (document.form.medBox4.value == ""){document.form.medBox4.value = "0"}
	if (document.form.lrgBox4.value == ""){document.form.lrgBox4.value = "0"}
	if (document.form.smlBox5.value == ""){document.form.smlBox5.value = "0"}
	if (document.form.medBox5.value == ""){document.form.medBox5.value = "0"}
	if (document.form.lrgBox5.value == ""){document.form.lrgBox5.value = "0"}
	if (document.form.smlBox6.value == ""){document.form.smlBox6.value = "0"}
	if (document.form.medBox6.value == ""){document.form.medBox6.value = "0"}
	if (document.form.lrgBox6.value == ""){document.form.lrgBox6.value = "0"}
	if (document.form.smlBox7.value == ""){document.form.smlBox7.value = "0"}
	if (document.form.medBox7.value == ""){document.form.medBox7.value = "0"}
	if (document.form.lrgBox7.value == ""){document.form.lrgBox7.value = "0"}
	if (document.form.smlBox8.value == ""){document.form.smlBox8.value = "0"}
	if (document.form.medBox8.value == ""){document.form.medBox8.value = "0"}
	if (document.form.lrgBox8.value == ""){document.form.lrgBox8.value = "0"}
	if (document.form.smlBox9.value == ""){document.form.smlBox9.value = "0"}
	if (document.form.medBox9.value == ""){document.form.medBox9.value = "0"}
	if (document.form.lrgBox9.value == ""){document.form.lrgBox9.value = "0"}
	if (document.form.smlBox10.value == ""){document.form.smlBox10.value = "0"}
	if (document.form.medBox10.value == ""){document.form.medBox10.value = "0"}
	if (document.form.lrgBox10.value == ""){document.form.lrgBox10.value = "0"}
	if (document.form.wardrobeBox.value == ""){document.form.wardrobeBox.value = "0"}
}

function nonStackableSqFt ()
{
	var ft2 = 0.0;
	
	ft2 = ft2  + ((parseFloat(document.form.oven_length.value)*parseFloat(document.form.oven_width.value))*parseFloat(document.form.oven.value));
	ft2 = ft2  + ((parseFloat(document.form.dishwasher_length.value)*parseFloat(document.form.dishwasher_width.value))*parseFloat(document.form.dishwasher.value));
	ft2 = ft2  + ((parseFloat(document.form.smlFreezer_length.value)*parseFloat(document.form.smlFreezer_width.value))*parseFloat(document.form.smlFreezer.value));
	ft2 = ft2  + ((parseFloat(document.form.medFreezer_length.value)*parseFloat(document.form.medFreezer_width.value))*parseFloat(document.form.medFreezer.value));
	ft2 = ft2  + ((parseFloat(document.form.lrgFreezer_length.value)*parseFloat(document.form.lrgFreezer_width.value))*parseFloat(document.form.lrgFreezer.value));
	ft2 = ft2  + ((parseFloat(document.form.smlFridge_length.value)*parseFloat(document.form.smlFridge_width.value))*parseFloat(document.form.smlFridge.value));
	ft2 = ft2  + ((parseFloat(document.form.medFridge_length.value)*parseFloat(document.form.medFridge_width.value))*parseFloat(document.form.medFridge.value));
	ft2 = ft2  + ((parseFloat(document.form.lrgFridge_length.value)*parseFloat(document.form.lrgFridge_width.value))*parseFloat(document.form.lrgFridge.value));
	ft2 = ft2  + ((parseFloat(document.form.dryer_length.value)*parseFloat(document.form.dryer_width.value))*parseFloat(document.form.dryer.value));
	ft2 = ft2  + ((parseFloat(document.form.washer_length.value)*parseFloat(document.form.washer_width.value))*parseFloat(document.form.washer.value));
	ft2 = ft2  + ((parseFloat(document.form.comboWD_length.value)*parseFloat(document.form.comboWD_width.value))*parseFloat(document.form.comboWD.value));
	ft2 = ft2  + ((parseFloat(document.form.dayBed_length.value)*parseFloat(document.form.dayBed_width.value))*parseFloat(document.form.dayBed.value));
	ft2 = ft2  + ((parseFloat(document.form.singleBed_length.value)*parseFloat(document.form.singleBed_width.value))*parseFloat(document.form.singleBed.value));
	ft2 = ft2  + ((parseFloat(document.form.twinBed_length.value)*parseFloat(document.form.twinBed_width.value))*parseFloat(document.form.twinBed.value));
	ft2 = ft2  + ((parseFloat(document.form.queenBed_length.value)*parseFloat(document.form.queenBed_width.value))*parseFloat(document.form.queenBed.value));
	ft2 = ft2  + ((parseFloat(document.form.kingBed_length.value)*parseFloat(document.form.kingBed_width.value))*parseFloat(document.form.kingBed.value));
	ft2 = ft2  + ((parseFloat(document.form.chesterDrawers_length.value)*parseFloat(document.form.chesterDrawers_width.value))*parseFloat(document.form.chesterDrawers.value));
	ft2 = ft2  + ((parseFloat(document.form.dresser_length.value)*parseFloat(document.form.dresser_width.value))*parseFloat(document.form.dresser.value));
	ft2 = ft2  + ((parseFloat(document.form.smlWardrobe_length.value)*parseFloat(document.form.smlWardrobe_width.value))*parseFloat(document.form.smlWardrobe.value));
	ft2 = ft2  + ((parseFloat(document.form.lrgWardrobe_length.value)*parseFloat(document.form.lrgWardrobe_width.value))*parseFloat(document.form.lrgWardrobe.value));
	ft2 = ft2  + ((parseFloat(document.form.buffet_length.value)*parseFloat(document.form.buffet_width.value))*parseFloat(document.form.buffet.value));
	ft2 = ft2  + ((parseFloat(document.form.chinaCabinet_length.value)*parseFloat(document.form.chinaCabinet_width.value))*parseFloat(document.form.chinaCabinet.value));
	ft2 = ft2  + ((parseFloat(document.form.grandfatherClock_length.value)*parseFloat(document.form.grandfatherClock_width.value))*parseFloat(document.form.grandfatherClock.value));
	ft2 = ft2  + ((parseFloat(document.form.hutch_length.value)*parseFloat(document.form.hutch_width.value))*parseFloat(document.form.hutch.value));
	ft2 = ft2  + ((parseFloat(document.form.loveseat_length.value)*parseFloat(document.form.loveseat_width.value))*parseFloat(document.form.loveseat.value));
	ft2 = ft2  + ((parseFloat(document.form.sofa3seat_length.value)*parseFloat(document.form.sofa3seat_width.value))*parseFloat(document.form.sofa3seat.value));
	ft2 = ft2  + ((parseFloat(document.form.sofa4seat_length.value)*parseFloat(document.form.sofa4seat_width.value))*parseFloat(document.form.sofa4seat.value));
	ft2 = ft2  + ((parseFloat(document.form.sofaCorner_length.value)*parseFloat(document.form.sofaCorner_width.value))*parseFloat(document.form.sofaCorner.value));
	ft2 = ft2  + ((parseFloat(document.form.sofaSec_length.value)*parseFloat(document.form.sofaSec_width.value))*parseFloat(document.form.sofaSec.value));
	ft2 = ft2  + ((parseFloat(document.form.tvBig_length.value)*parseFloat(document.form.tvBig_width.value))*parseFloat(document.form.tvBig.value));
	ft2 = ft2  + ((parseFloat(document.form.desk2ped_length.value)*parseFloat(document.form.desk2ped_width.value))*parseFloat(document.form.desk2ped.value));
	ft2 = ft2  + ((parseFloat(document.form.desk1ped_length.value)*parseFloat(document.form.desk1ped_width.value))*parseFloat(document.form.desk1ped.value));
	ft2 = ft2  + ((parseFloat(document.form.fileCabLat5_length.value)*parseFloat(document.form.fileCabLat5_width.value))*parseFloat(document.form.fileCabLat5.value));
	ft2 = ft2  + ((parseFloat(document.form.fileCabVert4_length.value)*parseFloat(document.form.fileCabVert4_width.value))*parseFloat(document.form.fileCabVert4.value));
	ft2 = ft2  + ((parseFloat(document.form.bigGrill_length.value)*parseFloat(document.form.bigGrill_width.value))*parseFloat(document.form.bigGrill.value));
	ft2 = ft2  + ((parseFloat(document.form.pushMower_length.value)*parseFloat(document.form.pushMower_width.value))*parseFloat(document.form.pushMower.value));
	ft2 = ft2  + ((parseFloat(document.form.rideMower_length.value)*parseFloat(document.form.rideMower_width.value))*parseFloat(document.form.rideMower.value));
	ft2 = ft2  + ((parseFloat(document.form.exerciseEquip_length.value)*parseFloat(document.form.exerciseEquip_width.value))*parseFloat(document.form.exerciseEquip.value));

	
	return ft2;
}

function nonStackableCuFt()
{
	var ft3=0.0;
	
	ft3 = ft3  + ((parseFloat(document.form.oven_length.value)*parseFloat(document.form.oven_width.value)*parseFloat(document.form.oven_height.value))*parseFloat(document.form.oven.value));
	ft3 = ft3  + ((parseFloat(document.form.dishwasher_length.value)*parseFloat(document.form.dishwasher_width.value)*parseFloat(document.form.dishwasher_height.value))*parseFloat(document.form.dishwasher.value));
	ft3 = ft3  + ((parseFloat(document.form.smlFreezer_length.value)*parseFloat(document.form.smlFreezer_width.value)*parseFloat(document.form.smlFreezer_height.value))*parseFloat(document.form.smlFreezer.value));
	ft3 = ft3  + ((parseFloat(document.form.medFreezer_length.value)*parseFloat(document.form.medFreezer_width.value)*parseFloat(document.form.medFreezer_height.value))*parseFloat(document.form.medFreezer.value));
	ft3 = ft3  + ((parseFloat(document.form.lrgFreezer_length.value)*parseFloat(document.form.lrgFreezer_width.value)*parseFloat(document.form.lrgFreezer_height.value))*parseFloat(document.form.lrgFreezer.value));
	ft3 = ft3  + ((parseFloat(document.form.smlFridge_length.value)*parseFloat(document.form.smlFridge_width.value)*parseFloat(document.form.smlFridge_height.value))*parseFloat(document.form.smlFridge.value));
	ft3 = ft3  + ((parseFloat(document.form.medFridge_length.value)*parseFloat(document.form.medFridge_width.value)*parseFloat(document.form.medFridge_height.value))*parseFloat(document.form.medFridge.value));
	ft3 = ft3  + ((parseFloat(document.form.lrgFridge_length.value)*parseFloat(document.form.lrgFridge_width.value)*parseFloat(document.form.lrgFridge_height.value))*parseFloat(document.form.lrgFridge.value));
	ft3 = ft3  + ((parseFloat(document.form.dryer_length.value)*parseFloat(document.form.dryer_width.value)*parseFloat(document.form.dryer_height.value))*parseFloat(document.form.dryer.value));
	ft3 = ft3  + ((parseFloat(document.form.washer_length.value)*parseFloat(document.form.washer_width.value)*parseFloat(document.form.washer_height.value))*parseFloat(document.form.washer.value));
	ft3 = ft3  + ((parseFloat(document.form.comboWD_length.value)*parseFloat(document.form.comboWD_width.value)*parseFloat(document.form.comboWD_height.value))*parseFloat(document.form.comboWD.value));
	ft3 = ft3  + ((parseFloat(document.form.dayBed_length.value)*parseFloat(document.form.dayBed_width.value)*parseFloat(document.form.dayBed_height.value))*parseFloat(document.form.dayBed.value));
	ft3 = ft3  + ((parseFloat(document.form.singleBed_length.value)*parseFloat(document.form.singleBed_width.value)*parseFloat(document.form.singleBed_height.value))*parseFloat(document.form.singleBed.value));
	ft3 = ft3  + ((parseFloat(document.form.twinBed_length.value)*parseFloat(document.form.twinBed_width.value)*parseFloat(document.form.twinBed_height.value))*parseFloat(document.form.twinBed.value));
	ft3 = ft3  + ((parseFloat(document.form.queenBed_length.value)*parseFloat(document.form.queenBed_width.value)*parseFloat(document.form.queenBed_height.value))*parseFloat(document.form.queenBed.value));
	ft3 = ft3  + ((parseFloat(document.form.kingBed_length.value)*parseFloat(document.form.kingBed_width.value)*parseFloat(document.form.kingBed_height.value))*parseFloat(document.form.kingBed.value));
	ft3 = ft3  + ((parseFloat(document.form.chesterDrawers_length.value)*parseFloat(document.form.chesterDrawers_width.value)*parseFloat(document.form.chesterDrawers_height.value))*parseFloat(document.form.chesterDrawers.value));
	ft3 = ft3  + ((parseFloat(document.form.dresser_length.value)*parseFloat(document.form.dresser_width.value)*parseFloat(document.form.dresser_height.value))*parseFloat(document.form.dresser.value));
	ft3 = ft3  + ((parseFloat(document.form.smlWardrobe_length.value)*parseFloat(document.form.smlWardrobe_width.value)*parseFloat(document.form.smlWardrobe_height.value))*parseFloat(document.form.smlWardrobe.value));
	ft3 = ft3  + ((parseFloat(document.form.lrgWardrobe_length.value)*parseFloat(document.form.lrgWardrobe_width.value)*parseFloat(document.form.lrgWardrobe_height.value))*parseFloat(document.form.lrgWardrobe.value));
	ft3 = ft3  + ((parseFloat(document.form.buffet_length.value)*parseFloat(document.form.buffet_width.value)*parseFloat(document.form.buffet_height.value))*parseFloat(document.form.buffet.value));
	ft3 = ft3  + ((parseFloat(document.form.chinaCabinet_length.value)*parseFloat(document.form.chinaCabinet_width.value)*parseFloat(document.form.chinaCabinet_height.value))*parseFloat(document.form.chinaCabinet.value));
	ft3 = ft3  + ((parseFloat(document.form.grandfatherClock_length.value)*parseFloat(document.form.grandfatherClock_width.value)*parseFloat(document.form.grandfatherClock_height.value))*parseFloat(document.form.grandfatherClock.value));
	ft3 = ft3  + ((parseFloat(document.form.hutch_length.value)*parseFloat(document.form.hutch_width.value)*parseFloat(document.form.hutch_height.value))*parseFloat(document.form.hutch.value));
	ft3 = ft3  + ((parseFloat(document.form.loveseat_length.value)*parseFloat(document.form.loveseat_width.value)*parseFloat(document.form.loveseat_height.value))*parseFloat(document.form.loveseat.value));
	ft3 = ft3  + ((parseFloat(document.form.sofa3seat_length.value)*parseFloat(document.form.sofa3seat_width.value)*parseFloat(document.form.sofa3seat_height.value))*parseFloat(document.form.sofa3seat.value));
	ft3 = ft3  + ((parseFloat(document.form.sofa4seat_length.value)*parseFloat(document.form.sofa4seat_width.value)*parseFloat(document.form.sofa4seat_height.value))*parseFloat(document.form.sofa4seat.value));
	ft3 = ft3  + ((parseFloat(document.form.sofaCorner_length.value)*parseFloat(document.form.sofaCorner_width.value)*parseFloat(document.form.sofaCorner_height.value))*parseFloat(document.form.sofaCorner.value));
	ft3 = ft3  + ((parseFloat(document.form.sofaSec_length.value)*parseFloat(document.form.sofaSec_width.value)*parseFloat(document.form.sofaSec_height.value))*parseFloat(document.form.sofaSec.value));
	ft3 = ft3  + ((parseFloat(document.form.tvBig_length.value)*parseFloat(document.form.tvBig_width.value)*parseFloat(document.form.tvBig_height.value))*parseFloat(document.form.tvBig.value));
	ft3 = ft3  + ((parseFloat(document.form.desk2ped_length.value)*parseFloat(document.form.desk2ped_width.value)*parseFloat(document.form.desk2ped_height.value))*parseFloat(document.form.desk2ped.value));
	ft3 = ft3  + ((parseFloat(document.form.desk1ped_length.value)*parseFloat(document.form.desk1ped_width.value)*parseFloat(document.form.desk1ped_height.value))*parseFloat(document.form.desk1ped.value));
	ft3 = ft3  + ((parseFloat(document.form.fileCabLat5_length.value)*parseFloat(document.form.fileCabLat5_width.value)*parseFloat(document.form.fileCabLat5_height.value))*parseFloat(document.form.fileCabLat5.value));
	ft3 = ft3  + ((parseFloat(document.form.fileCabVert4_length.value)*parseFloat(document.form.fileCabVert4_width.value)*parseFloat(document.form.fileCabVert4_height.value))*parseFloat(document.form.fileCabVert4.value));
	ft3 = ft3  + ((parseFloat(document.form.bigGrill_length.value)*parseFloat(document.form.bigGrill_width.value)*parseFloat(document.form.bigGrill_height.value))*parseFloat(document.form.bigGrill.value));
	ft3 = ft3  + ((parseFloat(document.form.pushMower_length.value)*parseFloat(document.form.pushMower_width.value)*parseFloat(document.form.pushMower_height.value))*parseFloat(document.form.pushMower.value));
	ft3 = ft3  + ((parseFloat(document.form.rideMower_length.value)*parseFloat(document.form.rideMower_width.value)*parseFloat(document.form.rideMower_height.value))*parseFloat(document.form.rideMower.value));
	ft3 = ft3  + ((parseFloat(document.form.exerciseEquip_length.value)*parseFloat(document.form.exerciseEquip_width.value)*parseFloat(document.form.exerciseEquip_height.value))*parseFloat(document.form.exerciseEquip.value));

	return ft3;
																																						
}

function stackableCuFt ()
{
	var ft3=0.0;
	
	ft3 = ft3 + ((parseFloat(document.form.acWindow_length.value)*parseFloat(document.form.acWindow_width.value)*parseFloat(document.form.acWindow_height.value))*parseFloat(document.form.acWindow.value));
	ft3 = ft3 + ((parseFloat(document.form.microwave_length.value)*parseFloat(document.form.microwave_width.value)*parseFloat(document.form.microwave_height.value))*parseFloat(document.form.microwave.value));
	ft3 = ft3 + ((parseFloat(document.form.smlBox_length.value)*parseFloat(document.form.smlBox_width.value)*parseFloat(document.form.smlBox_height.value))*parseFloat(document.form.smlBox.value));
	ft3 = ft3 + ((parseFloat(document.form.medBox_length.value)*parseFloat(document.form.medBox_width.value)*parseFloat(document.form.medBox_height.value))*parseFloat(document.form.medBox.value));
	ft3 = ft3 + ((parseFloat(document.form.lrgBox_length.value)*parseFloat(document.form.lrgBox_width.value)*parseFloat(document.form.lrgBox_height.value))*parseFloat(document.form.lrgBox.value));
	ft3 = ft3 + ((parseFloat(document.form.dayBed_length.value)*parseFloat(document.form.dayBed_width.value))*parseFloat(document.form.dayBed.value));
	ft3 = ft3 + ((parseFloat(document.form.singleBed_length.value)*parseFloat(document.form.singleBed_width.value))*parseFloat(document.form.singleBed.value));
	ft3 = ft3 + ((parseFloat(document.form.twinBed_length.value)*parseFloat(document.form.twinBed_width.value))*parseFloat(document.form.twinBed.value));
	ft3 = ft3 + ((parseFloat(document.form.queenBed_length.value)*parseFloat(document.form.queenBed_width.value))*parseFloat(document.form.queenBed.value));
	ft3 = ft3 + ((parseFloat(document.form.kingBed_length.value)*parseFloat(document.form.kingBed_width.value))*parseFloat(document.form.kingBed.value));
	ft3 = ft3 + ((parseFloat(document.form.cedarChest_length.value)*parseFloat(document.form.cedarChest_width.value)*parseFloat(document.form.cedarChest_height.value))*parseFloat(document.form.cedarChest.value));
	ft3 = ft3 + ((parseFloat(document.form.flrLamp_length.value)*parseFloat(document.form.flrLamp_width.value)*parseFloat(document.form.flrLamp_height.value))*parseFloat(document.form.flrLamp.value));
	ft3 = ft3 + ((parseFloat(document.form.tblLamp_length.value)*parseFloat(document.form.tblLamp_width.value)*parseFloat(document.form.tblLamp_height.value))*parseFloat(document.form.tblLamp.value));
	ft3 = ft3 + ((parseFloat(document.form.nightStand_length.value)*parseFloat(document.form.nightStand_width.value)*parseFloat(document.form.nightStand_height.value))*parseFloat(document.form.nightStand.value));
	ft3 = ft3 + ((parseFloat(document.form.smlAreaRug_length.value)*parseFloat(document.form.smlAreaRug_width.value)*parseFloat(document.form.smlAreaRug_height.value))*parseFloat(document.form.smlAreaRug.value));
	ft3 = ft3 + ((parseFloat(document.form.lrgAreaRug_length.value)*parseFloat(document.form.lrgAreaRug_width.value)*parseFloat(document.form.lrgAreaRug_height.value))*parseFloat(document.form.lrgAreaRug.value));
	ft3 = ft3 + ((parseFloat(document.form.vanity_length.value)*parseFloat(document.form.vanity_width.value)*parseFloat(document.form.vanity_height.value))*parseFloat(document.form.vanity.value));
	ft3 = ft3 + ((parseFloat(document.form.smlBox2_length.value)*parseFloat(document.form.smlBox2_width.value)*parseFloat(document.form.smlBox2_height.value))*parseFloat(document.form.smlBox2.value));
	ft3 = ft3 + ((parseFloat(document.form.medBox2_length.value)*parseFloat(document.form.medBox2_width.value)*parseFloat(document.form.medBox2_height.value))*parseFloat(document.form.medBox2.value));
	ft3 = ft3 + ((parseFloat(document.form.lrgBox2_length.value)*parseFloat(document.form.lrgBox2_width.value)*parseFloat(document.form.lrgBox2_height.value))*parseFloat(document.form.lrgBox2.value));
	ft3 = ft3 + ((parseFloat(document.form.wardrobeBox_length.value)*parseFloat(document.form.wardrobeBox_width.value)*parseFloat(document.form.wardrobeBox_height.value))*parseFloat(document.form.wardrobeBox.value));
	ft3 = ft3 + ((parseFloat(document.form.smlAreaRug2_length.value)*parseFloat(document.form.smlAreaRug2_width.value)*parseFloat(document.form.smlAreaRug2_height.value))*parseFloat(document.form.smlAreaRug2.value));
	ft3 = ft3 + ((parseFloat(document.form.lrgAreaRug2_length.value)*parseFloat(document.form.lrgAreaRug2_width.value)*parseFloat(document.form.lrgAreaRug2_height.value))*parseFloat(document.form.lrgAreaRug2.value));
	ft3 = ft3  + ((parseFloat(document.form.smlTable_length.value)*parseFloat(document.form.smlTable_width.value)*parseFloat(document.form.smlTable_height.value))*parseFloat(document.form.smlTable.value));
	ft3 = ft3  + ((parseFloat(document.form.lrgTable_length.value)*parseFloat(document.form.lrgTable_width.value)*parseFloat(document.form.lrgTable_height.value))*parseFloat(document.form.lrgTable.value));
	ft3 = ft3 + ((parseFloat(document.form.diningChair_length.value)*parseFloat(document.form.diningChair_width.value)*parseFloat(document.form.diningChair_height.value))*parseFloat(document.form.diningChair.value));
	ft3 = ft3 + ((parseFloat(document.form.smlBox3_length.value)*parseFloat(document.form.smlBox3_width.value)*parseFloat(document.form.smlBox3_height.value))*parseFloat(document.form.smlBox3.value));
	ft3 = ft3 + ((parseFloat(document.form.medBox3_length.value)*parseFloat(document.form.medBox3_width.value)*parseFloat(document.form.medBox3_height.value))*parseFloat(document.form.medBox3.value));
	ft3 = ft3 + ((parseFloat(document.form.lrgBox3_length.value)*parseFloat(document.form.lrgBox3_width.value)*parseFloat(document.form.lrgBox3_height.value))*parseFloat(document.form.lrgBox3.value));
	ft3 = ft3  + ((parseFloat(document.form.pantryCabinet_length.value)*parseFloat(document.form.pantryCabinet_width.value)*parseFloat(document.form.pantryCabinet_height.value))*parseFloat(document.form.pantryCabinet.value));
	ft3 = ft3  + ((parseFloat(document.form.utilityCabinet_length.value)*parseFloat(document.form.utilityCabinet_width.value)*parseFloat(document.form.utilityCabinet_height.value))*parseFloat(document.form.utilityCabinet.value));
	ft3 = ft3 + ((parseFloat(document.form.mwStand_length.value)*parseFloat(document.form.mwStand_width.value)*parseFloat(document.form.mwStand_height.value))*parseFloat(document.form.mwStand.value));
	ft3 = ft3 + ((parseFloat(document.form.vegetableBin_length.value)*parseFloat(document.form.vegetableBin_width.value)*parseFloat(document.form.vegetableBin_height.value))*parseFloat(document.form.vegetableBin.value));
	ft3 = ft3 + ((parseFloat(document.form.smlBox4_length.value)*parseFloat(document.form.smlBox4_width.value)*parseFloat(document.form.smlBox4_height.value))*parseFloat(document.form.smlBox4.value));
	ft3 = ft3 + ((parseFloat(document.form.medBox4_length.value)*parseFloat(document.form.medBox4_width.value)*parseFloat(document.form.medBox4_height.value))*parseFloat(document.form.medBox4.value));
	ft3 = ft3 + ((parseFloat(document.form.lrgBox4_length.value)*parseFloat(document.form.lrgBox4_width.value)*parseFloat(document.form.lrgBox4_height.value))*parseFloat(document.form.lrgBox4.value));
	ft3 = ft3 + ((parseFloat(document.form.bench_length.value)*parseFloat(document.form.bench_width.value)*parseFloat(document.form.bench_height.value))*parseFloat(document.form.bench.value));
	ft3 = ft3  + ((parseFloat(document.form.bookShelf_length.value)*parseFloat(document.form.bookShelf_width.value)*parseFloat(document.form.bookShelf_height.value))*parseFloat(document.form.bookShelf.value));
	ft3 = ft3  + ((parseFloat(document.form.bookCaseDD_length.value)*parseFloat(document.form.bookCaseDD_width.value)*parseFloat(document.form.bookCaseDD_height.value))*parseFloat(document.form.bookCaseDD.value));
	ft3 = ft3  + ((parseFloat(document.form.bookCaseSec_length.value)*parseFloat(document.form.bookCaseSec_width.value)*parseFloat(document.form.bookCaseSec_height.value))*parseFloat(document.form.bookCaseSec.value));
	ft3 = ft3 + ((parseFloat(document.form.armChair_length.value)*parseFloat(document.form.armChair_width.value)*parseFloat(document.form.armChair_height.value))*parseFloat(document.form.armChair.value));
	ft3 = ft3  + ((parseFloat(document.form.recliner_length.value)*parseFloat(document.form.recliner_width.value)*parseFloat(document.form.recliner_height.value))*parseFloat(document.form.recliner.value));
	ft3 = ft3  + ((parseFloat(document.form.overstuffedChair_length.value)*parseFloat(document.form.overstuffedChair_width.value)*parseFloat(document.form.overstuffedChair_height.value))*parseFloat(document.form.overstuffedChair.value));
	ft3 = ft3 + ((parseFloat(document.form.rockingChair_length.value)*parseFloat(document.form.rockingChair_width.value)*parseFloat(document.form.rockingChair_height.value))*parseFloat(document.form.rockingChair.value));
	ft3 = ft3 + ((parseFloat(document.form.wallClock_length.value)*parseFloat(document.form.wallClock_width.value)*parseFloat(document.form.wallClock_height.value))*parseFloat(document.form.wallClock.value));
	ft3 = ft3 + ((parseFloat(document.form.fpEquip_length.value)*parseFloat(document.form.fpEquip_width.value)*parseFloat(document.form.fpEquip_height.value))*parseFloat(document.form.fpEquip.value));
	ft3 = ft3 + ((parseFloat(document.form.ottoman_length.value)*parseFloat(document.form.ottoman_width.value)*parseFloat(document.form.ottoman_height.value))*parseFloat(document.form.ottoman.value));
	ft3 = ft3  + ((parseFloat(document.form.futon_length.value)*parseFloat(document.form.futon_width.value)*parseFloat(document.form.futon_height.value))*parseFloat(document.form.futon.value));
	ft3 = ft3 + ((parseFloat(document.form.flrLamp2_length.value)*parseFloat(document.form.flrLamp2_width.value)*parseFloat(document.form.flrLamp2_height.value))*parseFloat(document.form.flrLamp2.value));
	ft3 = ft3 + ((parseFloat(document.form.tblLamp2_length.value)*parseFloat(document.form.tblLamp2_width.value)*parseFloat(document.form.tblLamp2_height.value))*parseFloat(document.form.tblLamp2.value));
	ft3 = ft3 + ((parseFloat(document.form.smlAreaRug3_length.value)*parseFloat(document.form.smlAreaRug3_width.value)*parseFloat(document.form.smlAreaRug3_height.value))*parseFloat(document.form.smlAreaRug3.value));
	ft3 = ft3 + ((parseFloat(document.form.lrgAreaRug3_length.value)*parseFloat(document.form.lrgAreaRug3_width.value)*parseFloat(document.form.lrgAreaRug3_height.value))*parseFloat(document.form.lrgAreaRug3.value));
	ft3 = ft3 + ((parseFloat(document.form.coffeeTable_length.value)*parseFloat(document.form.coffeeTable_width.value)*parseFloat(document.form.coffeeTable_height.value))*parseFloat(document.form.coffeeTable.value));
	ft3 = ft3 + ((parseFloat(document.form.endTable_length.value)*parseFloat(document.form.endTable_width.value)*parseFloat(document.form.endTable_height.value))*parseFloat(document.form.endTable.value));
	ft3 = ft3 + ((parseFloat(document.form.smlBox5_length.value)*parseFloat(document.form.smlBox5_width.value)*parseFloat(document.form.smlBox5_height.value))*parseFloat(document.form.smlBox5.value));
	ft3 = ft3 + ((parseFloat(document.form.medBox5_length.value)*parseFloat(document.form.medBox5_width.value)*parseFloat(document.form.medBox5_height.value))*parseFloat(document.form.medBox5.value));
	ft3 = ft3 + ((parseFloat(document.form.lrgBox5_length.value)*parseFloat(document.form.lrgBox5_width.value)*parseFloat(document.form.lrgBox5_height.value))*parseFloat(document.form.lrgBox5.value));
	ft3 = ft3 + ((parseFloat(document.form.computer_length.value)*parseFloat(document.form.computer_width.value)*parseFloat(document.form.computer_height.value))*parseFloat(document.form.computer.value));
	ft3 = ft3 + ((parseFloat(document.form.dvdPlayer_length.value)*parseFloat(document.form.dvdPlayer_width.value)*parseFloat(document.form.dvdPlayer_height.value))*parseFloat(document.form.dvdPlayer.value));
	ft3 = ft3 + ((parseFloat(document.form.satelliteDish_length.value)*parseFloat(document.form.satelliteDish_width.value)*parseFloat(document.form.satelliteDish_height.value))*parseFloat(document.form.satelliteDish.value));
	ft3 = ft3 + ((parseFloat(document.form.portStereo_length.value)*parseFloat(document.form.portStereo_width.value)*parseFloat(document.form.portStereo_height.value))*parseFloat(document.form.portStereo.value));
	ft3 = ft3 + ((parseFloat(document.form.stereo_length.value)*parseFloat(document.form.stereo_width.value)*parseFloat(document.form.stereo_height.value))*parseFloat(document.form.stereo.value));
	ft3 = ft3 + ((parseFloat(document.form.smlSpeakers_length.value)*parseFloat(document.form.smlSpeakers_width.value)*parseFloat(document.form.smlSpeakers_height.value))*parseFloat(document.form.smlSpeakers.value));
	ft3 = ft3 + ((parseFloat(document.form.medSpeakers_length.value)*parseFloat(document.form.medSpeakers_width.value)*parseFloat(document.form.medSpeakers_height.value))*parseFloat(document.form.medSpeakers.value));
	ft3 = ft3 + ((parseFloat(document.form.lrgSpeakers_length.value)*parseFloat(document.form.lrgSpeakers_width.value)*parseFloat(document.form.lrgSpeakers_height.value))*parseFloat(document.form.lrgSpeakers.value));
	ft3 = ft3 + ((parseFloat(document.form.portTV_length.value)*parseFloat(document.form.portTV_width.value)*parseFloat(document.form.portTV_height.value))*parseFloat(document.form.portTV.value));
	ft3 = ft3 + ((parseFloat(document.form.tv19_length.value)*parseFloat(document.form.tv19_width.value)*parseFloat(document.form.tv19_height.value))*parseFloat(document.form.tv19.value));
	ft3 = ft3 + ((parseFloat(document.form.tv21_length.value)*parseFloat(document.form.tv21_width.value)*parseFloat(document.form.tv21_height.value))*parseFloat(document.form.tv21.value));
	ft3 = ft3 + ((parseFloat(document.form.smlBox6_length.value)*parseFloat(document.form.smlBox6_width.value)*parseFloat(document.form.smlBox6_height.value))*parseFloat(document.form.smlBox6.value));
	ft3 = ft3 + ((parseFloat(document.form.medBox6_length.value)*parseFloat(document.form.medBox6_width.value)*parseFloat(document.form.medBox6_height.value))*parseFloat(document.form.medBox6.value));
	ft3 = ft3 + ((parseFloat(document.form.lrgBox6_length.value)*parseFloat(document.form.lrgBox6_width.value)*parseFloat(document.form.lrgBox6_height.value))*parseFloat(document.form.lrgBox6.value));
	ft3 = ft3 + ((parseFloat(document.form.babyCarriage_length.value)*parseFloat(document.form.babyCarriage_width.value)*parseFloat(document.form.babyCarriage_height.value))*parseFloat(document.form.babyCarriage.value));
	ft3 = ft3 + ((parseFloat(document.form.bassinett_length.value)*parseFloat(document.form.bassinett_width.value)*parseFloat(document.form.bassinett_height.value))*parseFloat(document.form.bassinett.value));
	ft3 = ft3 + ((parseFloat(document.form.childsBed_length.value)*parseFloat(document.form.childsBed_width.value)*parseFloat(document.form.childsBed_height.value))*parseFloat(document.form.childsBed.value));
		ft3 = ft3  + ((parseFloat(document.form.bunkBeds_length.value)*parseFloat(document.form.bunkBeds_width.value)*parseFloat(document.form.bunkBeds_height.value))*parseFloat(document.form.bunkBeds.value));
	ft3 = ft3 + ((parseFloat(document.form.childsChair_length.value)*parseFloat(document.form.childsChair_width.value)*parseFloat(document.form.childsChair_height.value))*parseFloat(document.form.childsChair.value));
	ft3 = ft3 + ((parseFloat(document.form.highChair_length.value)*parseFloat(document.form.highChair_width.value)*parseFloat(document.form.highChair_height.value))*parseFloat(document.form.highChair.value));
	ft3 = ft3 + ((parseFloat(document.form.changingTable_length.value)*parseFloat(document.form.changingTable_width.value)*parseFloat(document.form.changingTable_height.value))*parseFloat(document.form.changingTable.value));
	ft3 = ft3 + ((parseFloat(document.form.cradle_length.value)*parseFloat(document.form.cradle_width.value)*parseFloat(document.form.cradle_height.value))*parseFloat(document.form.cradle.value));
	ft3 = ft3 + ((parseFloat(document.form.crib_length.value)*parseFloat(document.form.crib_width.value)*parseFloat(document.form.crib_height.value))*parseFloat(document.form.crib.value));
	ft3 = ft3  + ((parseFloat(document.form.childsDresser_length.value)*parseFloat(document.form.childsDresser_width.value)*parseFloat(document.form.childsDresser_height.value))*parseFloat(document.form.childsDresser.value));
	ft3 = ft3 + ((parseFloat(document.form.playPen_length.value)*parseFloat(document.form.playPen_width.value)*parseFloat(document.form.playPen_height.value))*parseFloat(document.form.playPen.value));
	ft3 = ft3 + ((parseFloat(document.form.smlAreaRug4_length.value)*parseFloat(document.form.smlAreaRug4_width.value)*parseFloat(document.form.smlAreaRug4_height.value))*parseFloat(document.form.smlAreaRug4.value));
	ft3 = ft3 + ((parseFloat(document.form.lrgAreaRug4_length.value)*parseFloat(document.form.lrgAreaRug4_width.value)*parseFloat(document.form.lrgAreaRug4_height.value))*parseFloat(document.form.lrgAreaRug4.value));
	ft3 = ft3 + ((parseFloat(document.form.stroller_length.value)*parseFloat(document.form.stroller_width.value)*parseFloat(document.form.stroller_height.value))*parseFloat(document.form.stroller.value));
	ft3 = ft3 + ((parseFloat(document.form.childsTable_length.value)*parseFloat(document.form.childsTable_width.value)*parseFloat(document.form.childsTable_height.value))*parseFloat(document.form.childsTable.value));
	ft3 = ft3 + ((parseFloat(document.form.toybox_length.value)*parseFloat(document.form.toybox_width.value)*parseFloat(document.form.toybox_height.value))*parseFloat(document.form.toybox.value));
	ft3 = ft3 + ((parseFloat(document.form.smlBox7_length.value)*parseFloat(document.form.smlBox7_width.value)*parseFloat(document.form.smlBox7_height.value))*parseFloat(document.form.smlBox7.value));
	ft3 = ft3 + ((parseFloat(document.form.medBox7_length.value)*parseFloat(document.form.medBox7_width.value)*parseFloat(document.form.medBox7_height.value))*parseFloat(document.form.medBox7.value));
	ft3 = ft3 + ((parseFloat(document.form.lrgBox7_length.value)*parseFloat(document.form.lrgBox7_width.value)*parseFloat(document.form.lrgBox7_height.value))*parseFloat(document.form.lrgBox7.value));
	ft3 = ft3  + ((parseFloat(document.form.bookcase4_length.value)*parseFloat(document.form.bookcase4_width.value)*parseFloat(document.form.bookcase4_height.value))*parseFloat(document.form.bookcase4.value));
	ft3 = ft3  + ((parseFloat(document.form.bookcase6_length.value)*parseFloat(document.form.bookcase6_width.value)*parseFloat(document.form.bookcase6_height.value))*parseFloat(document.form.bookcase6.value));
	ft3 = ft3 + ((parseFloat(document.form.officeChair_length.value)*parseFloat(document.form.officeChair_width.value)*parseFloat(document.form.officeChair_height.value))*parseFloat(document.form.officeChair.value));
	ft3 = ft3 + ((parseFloat(document.form.crendenza_length.value)*parseFloat(document.form.crendenza_width.value)*parseFloat(document.form.crendenza_height.value))*parseFloat(document.form.crendenza.value));
	ft3 = ft3 + ((parseFloat(document.form.fileCabLat2_length.value)*parseFloat(document.form.fileCabLat2_width.value)*parseFloat(document.form.fileCabLat2_height.value))*parseFloat(document.form.fileCabLat2.value));
	ft3 = ft3 + ((parseFloat(document.form.fileCabLat3_length.value)*parseFloat(document.form.fileCabLat3_width.value)*parseFloat(document.form.fileCabLat3_height.value))*parseFloat(document.form.fileCabLat3.value));
	ft3 = ft3 + ((parseFloat(document.form.fileCabLat4_length.value)*parseFloat(document.form.fileCabLat4_width.value)*parseFloat(document.form.fileCabLat4_height.value))*parseFloat(document.form.fileCabLat4.value));
	ft3 = ft3 + ((parseFloat(document.form.fileCabVert2_length.value)*parseFloat(document.form.fileCabVert2_width.value)*parseFloat(document.form.fileCabVert2_height.value))*parseFloat(document.form.fileCabVert2.value));
	ft3 = ft3 + ((parseFloat(document.form.smlBox8_length.value)*parseFloat(document.form.smlBox8_width.value)*parseFloat(document.form.smlBox8_height.value))*parseFloat(document.form.smlBox8.value));
	ft3 = ft3 + ((parseFloat(document.form.medBox8_length.value)*parseFloat(document.form.medBox8_width.value)*parseFloat(document.form.medBox8_height.value))*parseFloat(document.form.medBox8.value));
	ft3 = ft3 + ((parseFloat(document.form.lrgBox8_length.value)*parseFloat(document.form.lrgBox8_width.value)*parseFloat(document.form.lrgBox8_height.value))*parseFloat(document.form.lrgBox8.value));
	ft3 = ft3 + ((parseFloat(document.form.portGrill_length.value)*parseFloat(document.form.portGrill_width.value)*parseFloat(document.form.portGrill_height.value))*parseFloat(document.form.portGrill.value));
	ft3 = ft3 + ((parseFloat(document.form.bicycle_length.value)*parseFloat(document.form.bicycle_width.value)*parseFloat(document.form.bicycle_height.value))*parseFloat(document.form.bicycle.value));
	ft3 = ft3 + ((parseFloat(document.form.dogHouse_length.value)*parseFloat(document.form.dogHouse_width.value)*parseFloat(document.form.dogHouse_height.value))*parseFloat(document.form.dogHouse.value));
	ft3 = ft3 + ((parseFloat(document.form.gardenHose_length.value)*parseFloat(document.form.gardenHose_width.value)*parseFloat(document.form.gardenHose_height.value))*parseFloat(document.form.gardenHose.value));
	ft3 = ft3 + ((parseFloat(document.form.gardenTools_length.value)*parseFloat(document.form.gardenTools_width.value)*parseFloat(document.form.gardenTools_height.value))*parseFloat(document.form.gardenTools.value));
	ft3 = ft3 + ((parseFloat(document.form.ladderExt_length.value)*parseFloat(document.form.ladderExt_width.value)*parseFloat(document.form.ladderExt_height.value))*parseFloat(document.form.ladderExt.value));
	ft3 = ft3 + ((parseFloat(document.form.ladderStep_length.value)*parseFloat(document.form.ladderStep_width.value)*parseFloat(document.form.ladderStep_height.value))*parseFloat(document.form.ladderStep.value));
	ft3 = ft3 + ((parseFloat(document.form.lawnChair_length.value)*parseFloat(document.form.lawnChair_width.value)*parseFloat(document.form.lawnChair_height.value))*parseFloat(document.form.lawnChair.value));
	ft3 = ft3 + ((parseFloat(document.form.outdoorTable_length.value)*parseFloat(document.form.outdoorTable_width.value)*parseFloat(document.form.outdoorTable_height.value))*parseFloat(document.form.outdoorTable.value));
	ft3 = ft3 + ((parseFloat(document.form.tableUmbrella_length.value)*parseFloat(document.form.tableUmbrella_width.value)*parseFloat(document.form.tableUmbrella_height.value))*parseFloat(document.form.tableUmbrella.value));
	ft3 = ft3 + ((parseFloat(document.form.smlBox9_length.value)*parseFloat(document.form.smlBox9_width.value)*parseFloat(document.form.smlBox9_height.value))*parseFloat(document.form.smlBox9.value));
	ft3 = ft3 + ((parseFloat(document.form.medBox9_length.value)*parseFloat(document.form.medBox9_width.value)*parseFloat(document.form.medBox9_height.value))*parseFloat(document.form.medBox9.value));
	ft3 = ft3 + ((parseFloat(document.form.lrgBox9_length.value)*parseFloat(document.form.lrgBox9_width.value)*parseFloat(document.form.lrgBox9_height.value))*parseFloat(document.form.lrgBox9.value));
	ft3 = ft3 + ((parseFloat(document.form.clothesBasket_length.value)*parseFloat(document.form.clothesBasket_width.value)*parseFloat(document.form.clothesBasket_height.value))*parseFloat(document.form.clothesBasket.value));
	ft3 = ft3 + ((parseFloat(document.form.boxFan_length.value)*parseFloat(document.form.boxFan_width.value)*parseFloat(document.form.boxFan_height.value))*parseFloat(document.form.boxFan.value));
	ft3 = ft3 + ((parseFloat(document.form.golfBag_length.value)*parseFloat(document.form.golfBag_width.value)*parseFloat(document.form.golfBag_height.value))*parseFloat(document.form.golfBag.value));
	ft3 = ft3  + ((parseFloat(document.form.pingPongTable_length.value)*parseFloat(document.form.pingPongTable_width.value)*parseFloat(document.form.pingPongTable_height.value))*parseFloat(document.form.pingPongTable.value));
	ft3 = ft3  + ((parseFloat(document.form.poolTable_length.value)*parseFloat(document.form.poolTable_width.value)*parseFloat(document.form.poolTable_height.value))*parseFloat(document.form.poolTable.value));
	ft3 = ft3 + ((parseFloat(document.form.suitcase_length.value)*parseFloat(document.form.suitcase_width.value)*parseFloat(document.form.suitcase_height.value))*parseFloat(document.form.suitcase.value));
	ft3 = ft3 + ((parseFloat(document.form.toolBox_length.value)*parseFloat(document.form.toolBox_width.value)*parseFloat(document.form.toolBox_height.value))*parseFloat(document.form.toolBox.value));
	ft3 = ft3 + ((parseFloat(document.form.trashCan_length.value)*parseFloat(document.form.trashCan_width.value)*parseFloat(document.form.trashCan_height.value))*parseFloat(document.form.trashCan.value));
	ft3 = ft3 + ((parseFloat(document.form.wagon_length.value)*parseFloat(document.form.wagon_width.value)*parseFloat(document.form.wagon_height.value))*parseFloat(document.form.wagon.value));
	ft3 = ft3 + ((parseFloat(document.form.weights_length.value)*parseFloat(document.form.weights_width.value)*parseFloat(document.form.weights_height.value))*parseFloat(document.form.weights.value));
	ft3 = ft3 + ((parseFloat(document.form.smlBox10_length.value)*parseFloat(document.form.smlBox10_width.value)*parseFloat(document.form.smlBox10_height.value))*parseFloat(document.form.smlBox10.value));
	ft3 = ft3 + ((parseFloat(document.form.medBox10_length.value)*parseFloat(document.form.medBox10_width.value)*parseFloat(document.form.medBox10_height.value))*parseFloat(document.form.medBox10.value));
	ft3 = ft3 + ((parseFloat(document.form.lrgBox10_length.value)*parseFloat(document.form.lrgBox10_width.value)*parseFloat(document.form.lrgBox10_height.value))*parseFloat(document.form.lrgBox10.value));
	
	return ft3;
}

function setFocus()
{
	document.form.acWindow.focus;
}

function stackable()
{
	var stackable=0;
	
	stackable = stackable + parseInt(document.form.oven.value)
	stackable = stackable + parseInt(document.form.dishwasher.value)
	stackable = stackable + parseInt(document.form.smlFreezer.value)
	stackable = stackable + parseInt(document.form.medFreezer.value)
	stackable = stackable + parseInt(document.form.lrgFreezer.value)
	stackable = stackable + parseInt(document.form.smlFridge.value)
	stackable = stackable + parseInt(document.form.medFridge.value)
	stackable = stackable + parseInt(document.form.lrgFridge.value)
	stackable = stackable + parseInt(document.form.dryer.value)
	stackable = stackable + parseInt(document.form.washer.value)
	stackable = stackable + parseInt(document.form.comboWD.value)
	stackable = stackable + parseInt(document.form.chesterDrawers.value)
	stackable = stackable + parseInt(document.form.dresser.value)
	stackable = stackable + parseInt(document.form.smlWardrobe.value)
	stackable = stackable + parseInt(document.form.lrgWardrobe.value)
	stackable = stackable + parseInt(document.form.buffet.value)
	stackable = stackable + parseInt(document.form.chinaCabinet.value)
	stackable = stackable + parseInt(document.form.grandfatherClock.value)
	stackable = stackable + parseInt(document.form.hutch.value)
	stackable = stackable + parseInt(document.form.loveseat.value)
	stackable = stackable + parseInt(document.form.sofa3seat.value)
	stackable = stackable + parseInt(document.form.sofa4seat.value)
	stackable = stackable + parseInt(document.form.sofaCorner.value)
	stackable = stackable + parseInt(document.form.sofaSec.value)
	stackable = stackable + parseInt(document.form.tvBig.value)
	stackable = stackable + parseInt(document.form.desk2ped.value)
	stackable = stackable + parseInt(document.form.desk1ped.value)
	stackable = stackable + parseInt(document.form.fileCabLat5.value)
	stackable = stackable + parseInt(document.form.fileCabVert4.value)
	stackable = stackable + parseInt(document.form.bigGrill.value)
	stackable = stackable + parseInt(document.form.pushMower.value)
	stackable = stackable + parseInt(document.form.rideMower.value)
	stackable = stackable + parseInt(document.form.exerciseEquip.value)

	return stackable;
}

function checkHeight()
{
	
	maxHeight=0.0;
	
	if (parseFloat(document.form.oven.value) > 0.0)
	{
    	if (parseFloat(document.form.oven_height.value) > maxHeight)
    {
        maxHeight = parseFloat(document.form.oven_height.value);
    }
}


if (parseFloat(document.form.dishwasher.value) > 0.0) 
{ 
    if (parseFloat(document.form.dishwasher_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.dishwasher_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlFreezer.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlFreezer_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlFreezer_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.medFreezer.value) > 0.0) 
{ 
    if (parseFloat(document.form.medFreezer_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.medFreezer_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgFreezer.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgFreezer_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgFreezer_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlFridge.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlFridge_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlFridge_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.medFridge.value) > 0.0) 
{ 
    if (parseFloat(document.form.medFridge_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.medFridge_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgFridge.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgFridge_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgFridge_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.dryer.value) > 0.0) 
{ 
    if (parseFloat(document.form.dryer_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.dryer_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.washer.value) > 0.0) 
{ 
    if (parseFloat(document.form.washer_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.washer_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.comboWD.value) > 0.0) 
{ 
    if (parseFloat(document.form.comboWD_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.comboWD_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.dayBed.value) > 0.0) 
{ 
    if (parseFloat(document.form.dayBed_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.dayBed_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.singleBed.value) > 0.0) 
{ 
    if (parseFloat(document.form.singleBed_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.singleBed_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.twinBed.value) > 0.0) 
{ 
    if (parseFloat(document.form.twinBed_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.twinBed_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.queenBed.value) > 0.0) 
{ 
    if (parseFloat(document.form.queenBed_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.queenBed_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.kingBed.value) > 0.0) 
{ 
    if (parseFloat(document.form.kingBed_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.kingBed_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.chesterDrawers.value) > 0.0) 
{ 
    if (parseFloat(document.form.chesterDrawers_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.chesterDrawers_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.dresser.value) > 0.0) 
{ 
    if (parseFloat(document.form.dresser_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.dresser_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlWardrobe.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlWardrobe_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlWardrobe_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgWardrobe.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgWardrobe_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgWardrobe_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.buffet.value) > 0.0) 
{ 
    if (parseFloat(document.form.buffet_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.buffet_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.chinaCabinet.value) > 0.0) 
{ 
    if (parseFloat(document.form.chinaCabinet_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.chinaCabinet_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.grandfatherClock.value) > 0.0) 
{ 
    if (parseFloat(document.form.grandfatherClock_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.grandfatherClock_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.hutch.value) > 0.0) 
{ 
    if (parseFloat(document.form.hutch_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.hutch_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.loveseat.value) > 0.0) 
{ 
    if (parseFloat(document.form.loveseat_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.loveseat_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.sofa3seat.value) > 0.0) 
{ 
    if (parseFloat(document.form.sofa3seat_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.sofa3seat_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.sofa4seat.value) > 0.0) 
{ 
    if (parseFloat(document.form.sofa4seat_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.sofa4seat_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.sofaCorner.value) > 0.0) 
{ 
    if (parseFloat(document.form.sofaCorner_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.sofaCorner_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.sofaSec.value) > 0.0) 
{ 
    if (parseFloat(document.form.sofaSec_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.sofaSec_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.tvBig.value) > 0.0) 
{ 
    if (parseFloat(document.form.tvBig_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.tvBig_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.desk2ped.value) > 0.0) 
{ 
    if (parseFloat(document.form.desk2ped_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.desk2ped_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.desk1ped.value) > 0.0) 
{ 
    if (parseFloat(document.form.desk1ped_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.desk1ped_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.fileCabLat5.value) > 0.0) 
{ 
    if (parseFloat(document.form.fileCabLat5_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.fileCabLat5_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.fileCabVert4.value) > 0.0) 
{ 
    if (parseFloat(document.form.fileCabVert4_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.fileCabVert4_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.bigGrill.value) > 0.0) 
{ 
    if (parseFloat(document.form.bigGrill_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.bigGrill_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.pushMower.value) > 0.0) 
{ 
    if (parseFloat(document.form.pushMower_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.pushMower_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.rideMower.value) > 0.0) 
{ 
    if (parseFloat(document.form.rideMower_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.rideMower_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.exerciseEquip.value) > 0.0) 
{ 
    if (parseFloat(document.form.exerciseEquip_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.exerciseEquip_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.acWindow.value) > 0.0) 
{ 
    if (parseFloat(document.form.acWindow_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.acWindow_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.microwave.value) > 0.0) 
{ 
    if (parseFloat(document.form.microwave_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.microwave_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlBox.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlBox_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlBox_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.medBox.value) > 0.0) 
{ 
    if (parseFloat(document.form.medBox_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.medBox_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgBox.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgBox_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgBox_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.dayBed.value) > 0.0) 
{ 
    if (parseFloat(document.form.dayBed_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.dayBed_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.singleBed.value) > 0.0) 
{ 
    if (parseFloat(document.form.singleBed_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.singleBed_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.twinBed.value) > 0.0) 
{ 
    if (parseFloat(document.form.twinBed_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.twinBed_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.queenBed.value) > 0.0) 
{ 
    if (parseFloat(document.form.queenBed_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.queenBed_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.kingBed.value) > 0.0) 
{ 
    if (parseFloat(document.form.kingBed_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.kingBed_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.cedarChest.value) > 0.0) 
{ 
    if (parseFloat(document.form.cedarChest_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.cedarChest_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.flrLamp.value) > 0.0) 
{ 
    if (parseFloat(document.form.flrLamp_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.flrLamp_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.tblLamp.value) > 0.0) 
{ 
    if (parseFloat(document.form.tblLamp_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.tblLamp_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.nightStand.value) > 0.0) 
{ 
    if (parseFloat(document.form.nightStand_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.nightStand_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlAreaRug.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlAreaRug_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlAreaRug_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgAreaRug.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgAreaRug_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgAreaRug_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.vanity.value) > 0.0) 
{ 
    if (parseFloat(document.form.vanity_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.vanity_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlBox2.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlBox2_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlBox2_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.medBox2.value) > 0.0) 
{ 
    if (parseFloat(document.form.medBox2_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.medBox2_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgBox2.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgBox2_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgBox2_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.wardrobeBox.value) > 0.0) 
{ 
    if (parseFloat(document.form.wardrobeBox_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.wardrobeBox_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlAreaRug2.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlAreaRug2_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlAreaRug2_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgAreaRug2.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgAreaRug2_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgAreaRug2_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlTable.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlTable_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlTable_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgTable.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgTable_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgTable_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.diningChair.value) > 0.0) 
{ 
    if (parseFloat(document.form.diningChair_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.diningChair_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlBox3.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlBox3_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlBox3_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.medBox3.value) > 0.0) 
{ 
    if (parseFloat(document.form.medBox3_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.medBox3_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgBox3.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgBox3_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgBox3_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.pantryCabinet.value) > 0.0) 
{ 
    if (parseFloat(document.form.pantryCabinet_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.pantryCabinet_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.utilityCabinet.value) > 0.0) 
{ 
    if (parseFloat(document.form.utilityCabinet_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.utilityCabinet_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.mwStand.value) > 0.0) 
{ 
    if (parseFloat(document.form.mwStand_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.mwStand_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.vegetableBin.value) > 0.0) 
{ 
    if (parseFloat(document.form.vegetableBin_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.vegetableBin_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlBox4.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlBox4_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlBox4_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.medBox4.value) > 0.0) 
{ 
    if (parseFloat(document.form.medBox4_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.medBox4_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgBox4.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgBox4_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgBox4_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.bench.value) > 0.0) 
{ 
    if (parseFloat(document.form.bench_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.bench_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.bookShelf.value) > 0.0) 
{ 
    if (parseFloat(document.form.bookShelf_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.bookShelf_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.bookCaseDD.value) > 0.0) 
{ 
    if (parseFloat(document.form.bookCaseDD_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.bookCaseDD_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.bookCaseSec.value) > 0.0) 
{ 
    if (parseFloat(document.form.bookCaseSec_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.bookCaseSec_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.armChair.value) > 0.0) 
{ 
    if (parseFloat(document.form.armChair_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.armChair_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.recliner.value) > 0.0) 
{ 
    if (parseFloat(document.form.recliner_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.recliner_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.overstuffedChair.value) > 0.0) 
{ 
    if (parseFloat(document.form.overstuffedChair_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.overstuffedChair_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.rockingChair.value) > 0.0) 
{ 
    if (parseFloat(document.form.rockingChair_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.rockingChair_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.wallClock.value) > 0.0) 
{ 
    if (parseFloat(document.form.wallClock_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.wallClock_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.fpEquip.value) > 0.0) 
{ 
    if (parseFloat(document.form.fpEquip_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.fpEquip_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.ottoman.value) > 0.0) 
{ 
    if (parseFloat(document.form.ottoman_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.ottoman_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.futon.value) > 0.0) 
{ 
    if (parseFloat(document.form.futon_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.futon_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.flrLamp2.value) > 0.0) 
{ 
    if (parseFloat(document.form.flrLamp2_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.flrLamp2_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.tblLamp2.value) > 0.0) 
{ 
    if (parseFloat(document.form.tblLamp2_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.tblLamp2_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlAreaRug3.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlAreaRug3_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlAreaRug3_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgAreaRug3.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgAreaRug3_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgAreaRug3_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.coffeeTable.value) > 0.0) 
{ 
    if (parseFloat(document.form.coffeeTable_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.coffeeTable_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.endTable.value) > 0.0) 
{ 
    if (parseFloat(document.form.endTable_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.endTable_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlBox5.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlBox5_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlBox5_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.medBox5.value) > 0.0) 
{ 
    if (parseFloat(document.form.medBox5_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.medBox5_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgBox5.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgBox5_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgBox5_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.computer.value) > 0.0) 
{ 
    if (parseFloat(document.form.computer_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.computer_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.dvdPlayer.value) > 0.0) 
{ 
    if (parseFloat(document.form.dvdPlayer_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.dvdPlayer_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.satelliteDish.value) > 0.0) 
{ 
    if (parseFloat(document.form.satelliteDish_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.satelliteDish_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.portStereo.value) > 0.0) 
{ 
    if (parseFloat(document.form.portStereo_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.portStereo_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.stereo.value) > 0.0) 
{ 
    if (parseFloat(document.form.stereo_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.stereo_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlSpeakers.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlSpeakers_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlSpeakers_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.medSpeakers.value) > 0.0) 
{ 
    if (parseFloat(document.form.medSpeakers_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.medSpeakers_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgSpeakers.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgSpeakers_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgSpeakers_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.portTV.value) > 0.0) 
{ 
    if (parseFloat(document.form.portTV_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.portTV_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.tv19.value) > 0.0) 
{ 
    if (parseFloat(document.form.tv19_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.tv19_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.tv21.value) > 0.0) 
{ 
    if (parseFloat(document.form.tv21_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.tv21_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlBox6.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlBox6_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlBox6_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.medBox6.value) > 0.0) 
{ 
    if (parseFloat(document.form.medBox6_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.medBox6_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgBox6.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgBox6_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgBox6_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.babyCarriage.value) > 0.0) 
{ 
    if (parseFloat(document.form.babyCarriage_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.babyCarriage_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.bassinett.value) > 0.0) 
{ 
    if (parseFloat(document.form.bassinett_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.bassinett_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.childsBed.value) > 0.0) 
{ 
    if (parseFloat(document.form.childsBed_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.childsBed_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.bunkBeds.value) > 0.0) 
{ 
    if (parseFloat(document.form.bunkBeds_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.bunkBeds_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.childsChair.value) > 0.0) 
{ 
    if (parseFloat(document.form.childsChair_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.childsChair_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.highChair.value) > 0.0) 
{ 
    if (parseFloat(document.form.highChair_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.highChair_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.changingTable.value) > 0.0) 
{ 
    if (parseFloat(document.form.changingTable_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.changingTable_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.cradle.value) > 0.0) 
{ 
    if (parseFloat(document.form.cradle_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.cradle_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.crib.value) > 0.0) 
{ 
    if (parseFloat(document.form.crib_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.crib_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.childsDresser.value) > 0.0) 
{ 
    if (parseFloat(document.form.childsDresser_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.childsDresser_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.playPen.value) > 0.0) 
{ 
    if (parseFloat(document.form.playPen_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.playPen_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlAreaRug4.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlAreaRug4_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlAreaRug4_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgAreaRug4.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgAreaRug4_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgAreaRug4_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.stroller.value) > 0.0) 
{ 
    if (parseFloat(document.form.stroller_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.stroller_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.childsTable.value) > 0.0) 
{ 
    if (parseFloat(document.form.childsTable_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.childsTable_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.toybox.value) > 0.0) 
{ 
    if (parseFloat(document.form.toybox_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.toybox_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlBox7.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlBox7_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlBox7_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.medBox7.value) > 0.0) 
{ 
    if (parseFloat(document.form.medBox7_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.medBox7_height.value); 
    } 
} 

 
 
if (parseFloat(document.form.lrgBox7.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgBox7_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgBox7_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.bookcase4.value) > 0.0) 
{ 
    if (parseFloat(document.form.bookcase4_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.bookcase4_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.bookcase6.value) > 0.0) 
{ 
    if (parseFloat(document.form.bookcase6_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.bookcase6_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.officeChair.value) > 0.0) 
{ 
    if (parseFloat(document.form.officeChair_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.officeChair_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.crendenza.value) > 0.0) 
{ 
    if (parseFloat(document.form.crendenza_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.crendenza_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.fileCabLat2.value) > 0.0) 
{ 
    if (parseFloat(document.form.fileCabLat2_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.fileCabLat2_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.fileCabLat3.value) > 0.0) 
{ 
    if (parseFloat(document.form.fileCabLat3_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.fileCabLat3_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.fileCabLat4.value) > 0.0) 
{ 
    if (parseFloat(document.form.fileCabLat4_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.fileCabLat4_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.fileCabVert2.value) > 0.0) 
{ 
    if (parseFloat(document.form.fileCabVert2_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.fileCabVert2_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlBox8.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlBox8_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlBox8_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.medBox8.value) > 0.0) 
{ 
    if (parseFloat(document.form.medBox8_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.medBox8_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgBox8.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgBox8_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgBox8_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.portGrill.value) > 0.0) 
{ 
    if (parseFloat(document.form.portGrill_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.portGrill_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.bicycle.value) > 0.0) 
{ 
    if (parseFloat(document.form.bicycle_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.bicycle_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.dogHouse.value) > 0.0) 
{ 
    if (parseFloat(document.form.dogHouse_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.dogHouse_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.gardenHose.value) > 0.0) 
{ 
    if (parseFloat(document.form.gardenHose_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.gardenHose_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.gardenTools.value) > 0.0) 
{ 
    if (parseFloat(document.form.gardenTools_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.gardenTools_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.ladderExt.value) > 0.0) 
{ 
    if (parseFloat(document.form.ladderExt_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.ladderExt_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.ladderStep.value) > 0.0) 
{ 
    if (parseFloat(document.form.ladderStep_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.ladderStep_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lawnChair.value) > 0.0) 
{ 
    if (parseFloat(document.form.lawnChair_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lawnChair_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.outdoorTable.value) > 0.0) 
{ 
    if (parseFloat(document.form.outdoorTable_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.outdoorTable_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.tableUmbrella.value) > 0.0) 
{ 
    if (parseFloat(document.form.tableUmbrella_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.tableUmbrella_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlBox9.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlBox9_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlBox9_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.medBox9.value) > 0.0) 
{ 
    if (parseFloat(document.form.medBox9_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.medBox9_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgBox9.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgBox9_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgBox9_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.clothesBasket.value) > 0.0) 
{ 
    if (parseFloat(document.form.clothesBasket_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.clothesBasket_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.boxFan.value) > 0.0) 
{ 
    if (parseFloat(document.form.boxFan_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.boxFan_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.golfBag.value) > 0.0) 
{ 
    if (parseFloat(document.form.golfBag_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.golfBag_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.pingPongTable.value) > 0.0) 
{ 
    if (parseFloat(document.form.pingPongTable_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.pingPongTable_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.poolTable.value) > 0.0) 
{ 
    if (parseFloat(document.form.poolTable_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.poolTable_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.suitcase.value) > 0.0) 
{ 
    if (parseFloat(document.form.suitcase_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.suitcase_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.toolBox.value) > 0.0) 
{ 
    if (parseFloat(document.form.toolBox_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.toolBox_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.trashCan.value) > 0.0) 
{ 
    if (parseFloat(document.form.trashCan_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.trashCan_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.wagon.value) > 0.0) 
{ 
    if (parseFloat(document.form.wagon_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.wagon_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.weights.value) > 0.0) 
{ 
    if (parseFloat(document.form.weights_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.weights_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.smlBox10.value) > 0.0) 
{ 
    if (parseFloat(document.form.smlBox10_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.smlBox10_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.medBox10.value) > 0.0) 
{ 
    if (parseFloat(document.form.medBox10_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.medBox10_height.value); 
    } 
} 
 
 
if (parseFloat(document.form.lrgBox10.value) > 0.0) 
{ 
    if (parseFloat(document.form.lrgBox10_height.value) > maxHeight) 
    { 
        maxHeight = parseFloat(document.form.lrgBox10_height.value); 
    } 
} 

return maxHeight;
 
}

