
	// evtl. wurden per URL-Hash # Parameter an das Kontaktformular übergeben

	var s = window.location.hash.substr(1);
	var ArrParam = s.split("|");
	var SetFocusToMail = true;

	if (s.length > 0)
	{
		if (ArrParam.length == 2)
		{
			document.forms[0].email.value = ArrParam[0].replace(/%20/gi," ");
			s = ArrParam[1].replace(/%20/gi," ");
		}
		else
			s = s.replace(/%20/gi," ");

		document.forms[0].nachricht.value = s + "\n\n";
		document.forms[0].nachricht.focus();
		SetFocusToMail = false;
	}

	// Und jetzt den Fokus in das erste Eingabefeld des Formulares setzen,
	// das streng nach xhtml keinen Namen mehr besitzen darf.

	if (SetFocusToMail == true)
		document.forms[0].email.focus();

