function setSearchAction() { var comboObject = document.getElementById('search_where_combo'); var search_text = document.getElementById('search_text').value; if (comboObject.selectedIndex == 1) { //odsubmitni na google vyhladavanie var whole_link = 'http://www.google.sk/search?h1=sk&num=100&q=site%3Atzb-haustechnik.cz+' + search_text + '&meta='; window.open(whole_link, '_blank'); return false; } else { //vrat povodny action var formObject = document.getElementById('search_header_form'); formObject.submit(); } }