function search_click () {

    var stext = document.getElementById('search_text').value;

    if (document.forms[0].search_type[0].checked)  {
	location.href= "/kereses/?search_text="+stext;
    } else {
	location.href = "http://www.google.com/search?q="+stext;
    }
    
    return;

}
