function selectAction() {
var url;
var theform = document.GoogleForm;

if (theform.searchType[0].checked == true) {
theform.action= '/search/results/default.html';

theform.searchType.disabled=true;

theform.submit();
}

else if (theform.searchType[1].checked ==true) {

url = 'http://brownwoodprod.thomasnet.com/keyword/all-categories?'
    url = url + '&keyword=' + encodeURI(theform.q.value);
    url = url + '&refer=' + encodeURI(document.location.href);
    url = url + '&plpver=10&key=all&keycateg=100&SchType=2'

theform.q.name='keyword';
theform.site.disabled=true;
theform.output.disabled=true;
theform.client.disabled=true;
theform.restrict.disabled=true;
theform.proxystylesheet.disabled=true;
theform.proxyreload.disabled=true;
theform.searchType.disabled=true;

document.location.href = url;
}

}