// JavaScript Document
 function NeueFarbe(Nr,tf)
      {
      var TDID, COLtrue="", COLfalse="";
      TDID="box"+Nr;

      if (document.all && !document.getElementById) // IE 4
      {
      if (tf=="true")
      {
      document.all[TDID].style.backgroundColor=COLtrue;
      document.all[TDID].style.borderBottomColor="#ffffff";
	  document.all[TDID].style.borderBottomWidth="1px";
	  document.all[TDID].style.borderBottomStyle="solid";
	  }
      else
      {
      document.all[TDID].style.backgroundColor=COLfalse;
      document.all[TDID].style.borderBottomColor="";
	  document.all[TDID].style.borderBottomWidth="";
	  document.all[TDID].style.borderBottomStyle="";
	  }
      }

      if (document.getElementById) // IE 5.x und NN 6 (Opera, theoretisch ;-)
      {
      if (tf=="true")
      {
      document.getElementById(TDID).style.backgroundColor=COLtrue;
      document.getElementById(TDID).style.borderBottomColor="#ffffff";
	  document.getElementById(TDID).style.borderBottomWidth="1px";
	  document.getElementById(TDID).style.borderBottomStyle="solid";
	  }
      else
      {
      document.getElementById(TDID).style.backgroundColor=COLfalse;
	  document.getElementById(TDID).style.borderBottomColor="";
	  document.getElementById(TDID).style.borderBottomWidth="";
	  document.getElementById(TDID).style.borderBottomStyle="";
	  }
      }

      if (document.layers) // NN 4.x
      {
      if (tf=="true")
      {
      document.layers[TDID].bgColor=COLtrue;
      }
      else
      {
      document.layers[TDID].bgColor=COLfalse;
      }
      }
      }
	  
	  function NeueFarbe2(Nr,tf)
      {
      var TDID, COLtrue="bbbbcc", COLfalse="";
      TDID="box"+Nr;

      if (document.all && !document.getElementById) // IE 4
      {
      if (tf=="true")
      {
      document.all[TDID].style.backgroundColor=COLtrue;
	  }
      else
      {
      document.all[TDID].style.backgroundColor=COLfalse;
	  }
      }

      if (document.getElementById) // IE 5.x und NN 6 (Opera, theoretisch ;-)
      {
      if (tf=="true")
      {
      document.getElementById(TDID).style.backgroundColor=COLtrue;
	  }
      else
      {
      document.getElementById(TDID).style.backgroundColor=COLfalse;
	  }
      }

      if (document.layers) // NN 4.x
      {
      if (tf=="true")
      {
      document.layers[TDID].bgColor=COLtrue;
      }
      else
      {
      document.layers[TDID].bgColor=COLfalse;
      }
      }
      }
