Event.observe(window,'load',function(){ Event.observe($('btnSearch'),'click',function(){ //alert($F('Search_rdoAll') || $F('Search_rdoZone')); var what = $F('search_what'); var where = $F('Search_rdoAll') || $F('Search_rdoZone'); location.href = WEB_ROOT + 'pages/search/' + what + ((where) ? '/' + where : ''); }); }); function fncSearch(e) { if (window.event) { //IE if (e.keyCode == 13) { var what = $F('search_what'); var where = $F('Search_rdoAll') || $F('Search_rdoZone'); location.href = WEB_ROOT + 'pages/search/' + what + ((where) ? '/' + where : ''); } } else if (e.which) { //Netscape if (e.which == 13) { var what = $F('search_what'); var where = $F('Search_rdoAll') || $F('Search_rdoZone'); location.href = WEB_ROOT + 'pages/search/' + what + ((where) ? '/' + where : ''); } } }