function search()
{
	var tmp;
	tmp = document.getElementById("such_begriff").value;
	tmp = tmp.replace(/ä/g, "_auml_");
	tmp = tmp.replace(/Ä/g, "_Auml_");
	tmp = tmp.replace(/ö/g, "_ouml_");
	tmp = tmp.replace(/Ö/g, "_Ouml_");
	tmp = tmp.replace(/ü/g, "_uuml_");
	tmp = tmp.replace(/Ü/g, "_Uuml_");
	tmp = tmp.replace(/ß/g, "_szlig_");
	
	document.getElementById("s_begriff").value = tmp;
}
