// JavaScript Document
	
// Kontaktformular bei anklicken focus setzen und aufheben	
	function set_focusIE(dieser) {
		dieser.style.backgroundColor = "#ECE4B6";
	}
	
	function unset_focusIE(dieser) {
		dieser.style.backgroundColor = "#EDE8CA";	
	}


