function BMI() {
	
	var height = document.getElementById("height").value;
	var weight = document.getElementById("weight").value;
	var bmi = Math.round((weight / ((height * height) * 0.0001) * 100)) / 100;
	document.getElementById("bmi").innerHTML = "Din BMI er: " + bmi;
	
}

