/*
NN4 can't handle @media and the CSS anyway, so we warn the user.
*/
if (document.layers)
{
  document.write('<h3>Sie benutzen einen sehr alten Browser.</h3><p>Da diese Homepage modern programmiert ist kann ein solch alter Browser das Design nicht umsetzen. Sie können aber dennoch auf alle Inhalte zugreifen.</p>');
}

function turnOn(obj)
{
  obj.style.backgroundColor = "#7991d3";
  obj.style.borderLeftColor = "#b0f1a3";
}

function turnOff(obj)
{
  obj.style.backgroundColor = "";
  obj.style.borderLeftColor = "";
}

function linkTo(obj,url)
{
  if (document.getElementById)
  {
    obj.style.backgroundColor = "#7991d3";
    location.href = url;
  }
}

