<!--
	
	// aktives Formular-Input-Feld: Hintergrund-Farbe ändern
	function FormFocus(obj) {
		if (document.getElementByID || document.all) {
			obj.style.backgroundColor="#F1EEED";
		} else {
			obj.style.background="#F1EEED";
		}
	}
	
	// inaktives Formular-Input-Feld: Hintergrundfarbe ändern
	function FormBlur(obj) {
		if (document.getElementById || document.all) {
			obj.style.backgroundColor="#FFFFFF";
		} else {
			obj.style.background="#FFFFF";
		}
	}


//-->