function selectAction() {
var url;
var theform = document.GoogleForm;

if (theform.searchType[1].checked == true) {
theform.action= '/search/node%22/' + encodeURI(theform.q.value);
theform.q.name='search_block_form_keys';
theform.searchType.disabled=true;

theform.submit();
}

else if (theform.searchType[0].checked ==true) {

url = 'http://tuec.thomasnet.com/keyword/all-categories?'
    url = url + '&keyword=' + encodeURI(theform.q.value);
    url = url + '&plpver=1001&key=all&keycateg=100&SchType=2'

theform.q.name='keyword';
theform.searchType.disabled=true;

document.location.href = url;
}

}