<!--
//---------------------------------------------------------nicht verwendet
function high(LinkObject) {
  LinkObject.style.background='rgb(100,255,50)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(51,100,0)';
}

function low(LinkObject)	{
	LinkObject.style.background='rgb(255, 255, 255)';
	LinkObject.style.border='none';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(255,255,255)';
}

//---------------------------------------------------------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;
  }
  
}
//-->


