function checkform( myForm ) {
  if ((myForm.Name.value == "") || (myForm.Address.value == "") || (myForm.Country.value == "") || (myForm.Phone.value == "") || (myForm.Profile.value=="") || (myForm.Email.value == "") || (myForm.Comment.value == "") || (myForm.person.value == "")) {
	if (myForm.Name.value == "") {
		alert ('Please fill out your name');
		myForm.Name.focus ();
		return false;
		}
		if (myForm.Address.value == "") {
			alert ('Please fill out your address');
			myForm.Address.focus ();
                        return false;
		}
		if (myForm.Country.value == "") {
			alert ('Please fill out your country');
			myForm.Country.focus ();
                        return false;
		}
		if (myForm.Phone.value == "") {
			alert ('Please fill out your phone number');
			myForm.Phone.focus ();
                        return false;
		}
		if (myForm.Email.value == "") {
			alert ('Please fill out your email');
			myForm.Email.focus ();
                        return false;
		}
		if (myForm.Comment.value == "") {
			alert ('Please write a comment og question');
			myForm.Comment.focus ();
                        return false;
		}
		if (myForm.Profile.value == "") {
			alert ('Please select a Profile');
			myForm.Profile.focus ();
                        return false;
		}
		if (myForm.person.value == "") {
			alert ('Please select a Recipient');
			myForm.person.focus ();
                        return false;
		}
		
  }  
  else {
	return true;
  }
}
