// JavaScript Document
function valForm(){
	if (document.step1.kontakt.value == ''){
		alert('Du mangler at udfylde navn.');
		step1.kontakt.style.backgroundColor = "#606F17";
		setTimeout('step1.kontakt.style.backgroundColor = "#EFF8C2"', 1000);
		setTimeout('step1.kontakt.focus()', 1000);
		return false;
	}
	if (document.step1.email.value != ''){
		if (document.step1.email.value.indexOf("@") == -1 && document.step1.email.value != ""){
			alert("E-mail er ikke gyldig.");
			document.step1.email.style.backgroundColor = "#606F17";
			setTimeout('document.step1.email.style.backgroundColor = "#EFF8C2"', 1000);
			document.step1.email.focus(); 
			return false;
		}
		else if (document.step1.email.value.indexOf(".") == -1 && document.step1.email.value != ""){
			alert("E-mail er ikke gyldig.");
			document.step1.email.style.backgroundColor = "#606F17";
			setTimeout('document.step1.email.style.backgroundColor = "#EFF8C2"', 1000);
			document.step1.email.focus(); 
			return false;
		}
	}
	else {
		alert("Du mangler at udfylde e-mail.");
		document.step1.email.style.backgroundColor = "#606F17";
		setTimeout('document.step1.email.style.backgroundColor = "#EFF8C2"', 1000);
		document.step1.email.focus(); 
		return false;
	}
	return true;
}

