function changeTotal(productType)
{

//alert (productType);

var totalValue;
var productNumber;
var productDescription;
var cherryIncrease;
var finishIncrease;

switch(productType)
{
	case "ladder": 
		totalValue = 125.00;
		productDescription = "Quilt Ladder - ";
		productNumber = "QL-";
		cherryIncrease = 10;
		finishIncrease = 15;
		break;
		
	case "heartshelf":
		totalValue = 95.00;
		productDescription = "Heart Quilt Shelf - ";
		productNumber = "QS-H-";
		cherryIncrease = 10;
		finishIncrease = 15;
		break;
		
	case "noheartshelf":
		totalValue = 80.00;
		productDescription = "Quilt Shelf - ";
		productNumber = "QS-NH-";
		cherryIncrease = 10;
		finishIncrease = 15;
break;
}

if(document.forms[1].Select1.value == "Cherry") //Check type of wood
	{ 
		totalValue += cherryIncrease;
		totalValue += ".00";
	}
	
if(document.forms[1].Checkbox1.checked == true)
	{
		totalValue = parseInt(totalValue);
		totalValue += finishIncrease;
		totalValue += ".00";
		productNumber += "F";
		document.forms[1].Hidden5.value = productNumber;
		productDescription += "Finished";
		document.forms[1].Hidden4.value = productDescription;
	}
else if(document.forms[1].Checkbox1.checked == false)
	{
		totalValue = totalValue;
		productNumber += "U";
		document.forms[1].Hidden5.value = productNumber;
		productDescription += "Uninished";
		document.forms[1].Hidden4.value = productDescription;	} 

	document.forms[1].Hidden6.value = totalValue;
}