
<!--
// The Gas Mileage Calculator is provided by Car Dealer Check at http://www.cardealercheck.com
// You are Free to use this calculator on your website as long as the link to Car Dealer Check remains somewhere on your page.
// If no link is present or to get updated code please visit www.cardealercheck.com/webmaster.php to get the correct code.  Thank You!
function MPG() {

	Gallons = GasCalculator.gallons.value
	PricePerGallon = GasCalculator.ppGal.value
	Distance = GasCalculator.OdomEnd.value - GasCalculator.OdomStart.value 
	
	
	MilesPerGallon = Math.round(Distance / Gallons*100)/100
	PriceOf50Miles = Math.round(((50/MilesPerGallon) * PricePerGallon)*100)/100
	PriceOf100Miles =Math.round(((100/MilesPerGallon) * PricePerGallon)*100)/100
	PriceOf150Miles=  Math.round(((150/MilesPerGallon) * PricePerGallon)*100)/100
	GasCalculator.mpg.value = MilesPerGallon
	GasCalculator.Gas50.value = PriceOf50Miles
	GasCalculator.Gas100.value = PriceOf100Miles
	GasCalculator.Gas150.value = PriceOf150Miles

}
// -->

