function platba (typ, hodnota1, hodnota2) {
   
   if (typ == "doruceni") {

      typ_doruceni = hodnota1;
      document.getElementById(hodnota2).checked='checked';
      
   } if (typ == "platba") {
   
      document.getElementById(typ_doruceni+"_"+hodnota1).checked='checked';
      
   }
   
}