// JavaScript Document

function calcula(){
	var valueCentimeter = document.Calculo.Centimetros.value;
	var valueMonth = document.Calculo.Meses.value;
	var valueLenght;
	var valueTotalLenght;
	valueMonth = valueMonth * 1;
	valueCentimeter = valueCentimeter * 1;
	valueLenght = -0.327 + (0.562 * valueMonth);
	valueTotalLenght = valueCentimeter + valueLenght;
	valueLengthInches = valueLenght * 0.3937007;
	valueTotalLengthInches = valueTotalLenght * 0.3937007;

	document.all.CalculoInicial.style.visibility="hidden";
	document.all.Resultado.style.visibility="visible";
	document.resultados.Centimeters.value=Math.round(valueTotalLenght*100)/100;
	document.resultados.CentimetersTotal.value=Math.round(valueLenght*100)/100;
	document.resultados.Inches.value=Math.round(valueLengthInches*100)/100;
	document.resultados.InchesTotal.value=Math.round(valueTotalLengthInches*100)/100;
	document.resultados.MonthsUse.value=valueMonth;
	document.resultados.MonthsUse2.value=valueMonth;
	document.resultados.InitValue.value=valueCentimeter;

}

function newCalculo(){
	document.all.CalculoInicial.style.visibility="visible";
	document.all.Resultado.style.visibility="hidden";

}

