function validateKontakt(thisForm) {

	if (thisForm.meddelande.value != "" && thisForm.kontaktuppgifter.value != "") {
		return true;
	} else {
		alert("Var vänlig att fylla i båda fälten!");
		return false;
	}
	
}
