// http://www.lernen-freizeit.de MD 2001
// Datei formular.js
function FocusCol(obj)
{
 if (document.getElementById || document.all)
  {
  obj.style.color="#ffffff";
  obj.style.backgroundColor="#4F4F4F";
  }
}

function BlurCol(obj)
{
  if (document.getElementById || document.all)
  {
  obj.style.color="#000000";
  obj.style.backgroundColor="#FFFF00";
  }
}

