<!-- // ignore if non-JS browser
function Validator(contactform){
	var error = "";

	if (contactform.name.value.length < 4){
		error += "Navn må være på minimum 4 tegn.\n";
	} 
	if (contactform.inquiry.value.length < 10){
		error += "Forespørsel må være på minimum 10 tegn.\n";
	} 
	if (error != ""){
		alert(error);
		return (false);
	} else {
		return (true);
	}
}
// -->