function chkfields() {

	var company = window.document.order.frmCompany;
	var fullname = window.document.order.frmFullName;
	var phone = window.document.order.frmPhone;
	var mail = window.document.order.frmMail;
	var orgnr = window.document.order.frmOrgNr;
	var nremployees = window.document.order.frmNrEmployees;
		
	
	var titta = 1;
	
	
	if (titta == 1 && !company.value) {

		titta = 0;
		window.alert('Ni måste ange namn på ert företag!');
		company.focus();
					
	}


	if (titta == 1 && !fullname.value) {

		titta = 0;
		window.alert('Ni måste ange Ert namn!');
		fullname.focus();
					
	}
	
	if (titta == 1 && !phone.value) {

		titta = 0;
		window.alert('Ni måste ange telefonnummer för Er kontakt på ert företag!');
		phone.focus();
					
	}

	if (titta == 1 && !mail.value) {

		titta = 0;
		window.alert('Ni måste ange epost för Er kontakt på ert företag!');
		mail.focus();
					
	}
	
	if (titta == 1 && !orgnr.value) {
		
		titta = 0;
		window.alert('Ni måste anger organisationsnr för ert företag!');
		orgnr.focus();
		
	}
	
	
	if (titta == 1 && !nremployees.value) {
	
		titta = 0;
		window.alert('Ni måste ange antal användare på ert företag!');
		nremployees.focus();
		
	}
	






	if (titta == 1) {
		window.document.order.submit();
	}
	
		
}



	