// JavaScript Document
function test_contact_form(){
	var name 		= document.getElementById('name');
	var email 		= document.getElementById('email');
	var tlf 		= document.getElementById('tlf');
	var msg 		= document.getElementById('msg');
	var status_image= document.getElementById('status_image');
	var email_test 	= /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*\.(\w+)/;
	
	name.style.borderColor	=	"#999999";
	email.style.borderColor	=	"#999999";
	tlf.style.borderColor	=	"#999999";
	msg.style.borderColor	=	"#999999";
	status_image.src 		= 	"graphics/dk/kontakt_felter.gif";
	if (name.value=="") {
		status_image.src = "graphics/dk/kontakt_obs.gif";
		name.style.borderColor = "#990000";
		name.focus();
	} else if (tlf.value=="") {
		status_image.src = "graphics/dk/kontakt_obs.gif";
		tlf.style.borderColor = "#990000";
		tlf.focus();
	} else if (!email_test.test(email.value)) {		
		status_image.src = "graphics/dk/kontakt_obs.gif";
		email.style.borderColor = "#990000";
		email.focus();	
	} else if (msg.value=="") {
		status_image.src = "graphics/dk/kontakt_obs.gif";
		msg.style.borderColor = "#990000";
		msg.focus();
	} else {
		return true;
	}
	return false;	
}