function block_go_search(){
	var form = $("block_form_search");
	if(form.str_search.value.length<=3){
		alert("You must have more than characters in your search.");
	}
	else{
		window.location.href=form.action + "/keywords/"+form.str_search.value
	}
}
