function checkform(){
  fields = new Array("klinikinformation","patienteninformation_tinnitus","angst_zwangsstoerungen",
                            "somatoforme_stoerungen","hbo","fachinformation_tinnitus","einleger",
                            "fachinfo_somatoforme_stoerungen","fachinfo_angst_zwangsstoerungen");
  for (i=0; i< fields.length; i++){
    if (document.getElementsByName(fields[i])[0].checked) return true;
  }
  alert("Bitte klicken Sie mindestens einen Prospekt an.");
  return false;
}
