//WECHSELT BILD IN MELDUNG (HINTERGRUND)
function chBild(){
   var tdBild = document.getElementById("tdBild");
   var bildNeu = document.getElementById("editBild").value;
   var url = "url(Aktuelles/"+bildNeu+")";
   tdBild.style.backgroundImage=url;
}

//SELECTIERT DIE RICHTIGE OPTION IN DER LISTE
function vorselectBild(optBildNr){
   document.getElementById("editBild").selectedIndex=optBildNr;
}

//MACHT LISTE NICHT-EDITIERBAR WENN CHECKBOX GEKLICKT / BZW ZURÜCK
function chTagIrr(){
   var editTagIrr = document.getElementById("editTagIrr");
   var editTag = document.getElementById("editTag");
   if(editTagIrr.checked){
      editTag.disabled=true;
   }
   else{
      editTag.disabled=false;
   }
}

function vorselectDatum(tag, monat, jahr){
   document.getElementById("editTag").selectedIndex=tag;
   document.getElementById("editMonat").selectedIndex=monat;
   document.getElementById("editJahr").selectedIndex=jahr;

}

function vorselectTyp(typNr){
   document.getElementById("editTyp").selectedIndex = typNr;
}

function checkRadio(radioId){
   document.getElementById(radioId).checked = true;
}

