/* Sebastian Krüger 26.07.2007 */
/* Layout Funktionen für Konfiguratioren */

function roterrahmen(bild,button) {
   
   for(i=1;i<5;i++) {
     bildid = document.getElementById('vorgabe'+i);
     bildid.className = "bildloeschrahmen";
   }
   
   bildid = document.getElementById(bild);
   bildid.className = "bildrahmenrot";
   
   buttonid = document.getElementById(button);
   buttonid.checked = true;
   
   buttonid.focus();
}
