function senddk(){
	if(checkFormdk(document.Form1)){
		document.Form1.knap.disabled = true;
		document.Form1.action="sendform.asp";
		document.Form1.submit();
		
	}
}

function senduk(){
	if(checkFormuk(document.Form1)){
		document.Form1.knap.disabled = true;
		document.Form1.action="sendform.asp";
		document.Form1.submit();
		
	}
}

function checkFormdk(form){
	if(form.fornavn.value==''){
		alert("Fornavn mangler!");
		form.fornavn.focus();
		return false;
	}
	
	if(form.efternavn.value==''){
		alert("Efternavn mangler!");
		form.efternavn.focus();
		return false;
	}
	
	if(form.firma.value==''){
		alert("Firma mangler!");
		form.firma.focus();
		return false;
	}
	
	if(form.email.value==''){
		alert("E-mail mangler!");
		form.email.focus();
		return false;
	}
	
	if(form.kommentar.value==''){
		alert("Kommentar mangler!");
		form.kommentar.focus();
		return false;
	}
	
	return true;
}

function checkFormuk(form){
	if(form.fornavn.value==''){
		alert("First name are missing!");
		form.fornavn.focus();
		return false;
	}
	
	if(form.efternavn.value==''){
		alert("Last name are missing!");
		form.efternavn.focus();
		return false;
	}
	
	if(form.firma.value==''){
		alert("Company name are missing!");
		form.firma.focus();
		return false;
	}
	
	if(form.email.value==''){
		alert("E-mail are missing!");
		form.email.focus();
		return false;
	}
	
	if(form.kommentar.value==''){
		alert("Comment are missing!");
		form.kommentar.focus();
		return false;
	}
	
	return true;
}