function calculateBMI() {
	weight = document.getElementById('frmBMI').weight.value;
	height = document.getElementById('frmBMI').height.value;

	isOK = true;
	arrError = new Array();
	
	if(weight == "" || height == "") {
		isOK = false;
		arrError[arrError.length] = "Du måste fylla i både vikt och längd!";		
	}
	if(isNaN(weight)) {
		isOK = false;
		arrError[arrError.length] = "Din vikt måste anges i kilo!";
	}
	if(isNaN(height)) {
		isOK = false;
		arrError[arrError.length] = "Din längd måste anges i centimeter!";
	}	
	
	if(arrError.length < 1) {
		bmi = weight / ((height/100)*(height/100));
		location.href = "rakna_ut_bmi.php?bmi=" + bmi;
	} else {
		for(i = 0; i < arrError.length; i++) txtError = arrError[i];	
	}	
}