function checkForm() {
	result = true;
	if (kontaktskjema.fornavn.value == "" || kontaktskjema.fornavn.value == null) {
		document.kontaktskjema.fornavn.focus();
		var minBox = open("","Obs","width=250,height=250");
		minBox.document.open();
		minBox.document.write("<html><head><title>Feilmelding</title><link href='javastyle.css' rel='stylesheet' type='text/css' /></head><body>");
		minBox.document.write("<h1>Ooops!</h1><p>Du må fylle inn <strong>fornavn</strong> før du kan sende skjemaet. Prøv igjen!<p>");
		minBox.document.write("<p><a href='javascript;' onclick='window.close();'>Lukk vindu</a></p>");
		minBox.document.write("</body></html>");
		minBox.document.close();
		result = false;
	}
	else if (kontaktskjema.etternavn.value == "" || kontaktskjema.etternavn.value == null) {
		document.kontaktskjema.etternavn.focus();
		var minBox = open("","Obs","width=250,height=250");
		minBox.document.open();
		minBox.document.write("<html><head><title>Feilmelding</title><link href='javastyle.css' rel='stylesheet' type='text/css' /></head><body>");
		minBox.document.write("<h1>Ooops!</h1><p>Du må fylle inn <strong>etternavn</strong> før du kan sende skjemaet. Prøv igjen!<p>");
		minBox.document.write("<p><a href='javascript;' onclick='window.close();'>Lukk vindu</a></p>");
		minBox.document.write("</body></html>");
		minBox.document.close();
		result = false;
	}
	else if (kontaktskjema.epost.value == "" || kontaktskjema.epost.value == null) {
		document.kontaktskjema.epost.focus();
		var minBox = open("","Obs","width=250,height=250");
		minBox.document.open();
		minBox.document.write("<html><head><title>Feilmelding</title><link href='javastyle.css' rel='stylesheet' type='text/css' /></head><body>");
		minBox.document.write("<h1>Ooops!</h1><p>Du må fylle inn <strong>email</strong> før du kan sende skjemaet. Prøv igjen!<p>");
		minBox.document.write("<p><a href='javascript;' onclick='window.close();'>Lukk vindu</a></p>");
		minBox.document.write("</body></html>");
		minBox.document.close();
		result = false;
	}	
	else if (kontaktskjema.epost.value.indexOf('@') == -1) {
		document.kontaktskjema.epost.focus();
		var minBox = open("","Obs","width=250,height=250");
		minBox.document.open();
		minBox.document.write("<html><head><title>Feilmelding</title><link href='javastyle.css' rel='stylesheet' type='text/css' /></head><body>");
		minBox.document.write("<h1>Ooops!</h1><p>Du må fylle inn en <strong>gyldig emailadresse</strong> før du kan sende skjemaet. Prøv igjen!<p>");
		minBox.document.write("<p><a href='javascript;' onclick='window.close();'>Lukk vindu</a></p>");
		minBox.document.write("</body></html>");
		minBox.document.close();
		result = false;
	}	
	
	return result;
}