function testCheck(theForm,name){
   isChecked=false;
   for(i=0;i<theForm[name].length;i++){
       if(theForm[name][i].checked){
           isChecked=true;
       }
   }
   if(!isChecked){
       alert("Bitte wählen Sie eine der Antworten");
   }
   return isChecked;
} 
