function checkcontactform() {
	if (trim(document.getElementById("contactName").value) == "") {
		alert("You haven't stated your name.\nIt would be nice to know who's trying to get in touch with me!");
		document.getElementById("contactName").focus();
		return false;
	}
	if (trim(document.getElementById("contactEmail").value) == "") {
		alert("You haven't filled in your e-mail address.\nWithout it I cannot get back in touch with you!");
		document.getElementById("contactEmail").focus();
		return false;
	}
	if (trim(document.getElementById("contactQuestion").value) == "") {
		alert("You haven't written anything.\nThat is sort of the point with this form!");
		document.getElementById("contactQuestion").focus();
		return false;
	}
	else { return true; }
}
