// farbt zelle weiss

function aktiv (x)
{
 document.getElementById(x).bgColor = "#ffffff";

}




function hide(x) {
 if(document.getElementById)
   document.getElementById(x).style.visibility = "hidden";
}


function Go(x)
{
 if(x == "nothing")
 {
   document.forms[0].reset();
   document.forms[0].elements[0].blur();   
   return;
 }
 else
  {
   location.href = x;
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
   
  }
}
