function goquery() {
	var a=document.getElementById('keyword_q');
	var s='/search-'+encodeURIComponent(a.value)+'.html';
	if (a!=null){
	    if (a.value!='') {
		document.location = s;
	    }
	}
}

