var resultat = "results.html";
function search_form(Suche) {
	var z = 4;
	if (Suche.d.value.length > 0) {
        if (Suche.radio.radio[0].checked == true) { z =0; }
        if (Suche.radio.radio[1].checked == true) { z =1; }
        if (Suche.radio.radio[2].checked == true) { z =2; }
        if (Suche.radio.radio[3].checked == true) { z =3; }
		document.cookie = "d=" + z + escape(Suche.d.value);
		window.location = resultat;
	}
}
