function checkMailForm(theForm) {
  if (theForm.txtTo.selectedIndex == 0) {
    alert("Du kan inte skicka e-post utan att välja mottagare.\nVälj en mottagare i listan.");
    theForm.txtTo.focus();
    return (false);
  }
  return (true);
}
