
//---------------------------------------------------------aktuell
function zelle(LinkObject,status) {
  if (status==1){
    farbe = LinkObject.style.backgroundColor;
    
    LinkObject.style.background='rgb(240,240,240)';
	  LinkObject.style.border='solid';
	  LinkObject.style.borderWidth='1px';
	  LinkObject.style.borderColor='rgb(190,190,190)';
  }else{

	  LinkObject.style.backgroundColor=farbe;
	  LinkObject.style.border='none';
	  LinkObject.style.borderWidth='1px';
	  LinkObject.style.borderColor=farbe;
  }
}



