function FocusCol(obj)				// Andert beim ausfüllen des Formularfeldes die Schriftfarbe und Formularfeldhintergrund
{
  if (document.getElementById ||
    document.all)
  {
  obj.style.color="black";
  obj.style.backgroundColor="#CCCCCC";
  }
}

function BlurCol(obj)				// Ändert bei verlassen eines Formularfeld die Schriftfarbe und den Hintergrund
{
  if (document.getElementById ||
    document.all)
  {
  obj.style.color="#003366";
  obj.style.backgroundColor="#cccccc";
  }
}
