function check_input() {

   var feil=true;

    
  if (document.bestilling.upostnr.value.length < 4) {
 
   window.alert("Postnummer må inneholde minst 4 tall.");
   feil=false;
   
  }
  
  if (document.bestilling.uphone.value.length < 8) {
 
   window.alert("Telefonnummer må inneholde minst 8 tall.");
   feil=false;
   
  }
  

  
   
 
  
    
   if ((document.bestilling.udomene.value=="") ||
	  (document.bestilling.ukontaktperson.value=="") ||
     (document.bestilling.upostnr.value=="") ||
	 (document.bestilling.upoststed.value=="") ||
     (document.bestilling.uphone.value=="")
      ) {
   window.alert('Du må fylle ut alle påkrevde felter, markert med stjerne.');
   feil=false;
  }
  
  if (document.bestilling.uphone.value.indexOf(" ")!=-1)
	  {
   window.alert("Du kan ikke ha mellomrom i telefonnummer.");
   feil=false;
  }

  if ((document.bestilling.uemail.value.indexOf("@")==-1) || (document.bestilling.uemail.value.indexOf(" ")!=-1) || (document.bestilling.uemail.value.indexOf(".")==-1))  {
   window.alert("Epost-adressen du har angitt er ikke gyldig.");
   feil=false;
  }
 
  return feil;

}
