function checkTerm(searchBox){
    var sb = document.getElementById(searchBox);
    
    if(sb.value == "" || sb.value == "Search"){
        alert("Please enter a search term");
        sb.focus();
    }else{
        window.open('http://bio2009.bdmetrics.com/SearchResults.aspx?configid=1&keyword=' + sb.value, '',  'width=850, height=600, location=yes, menubar=yes, status=yes, toolbar=yes, resizable=yes, scrollbars=yes');
    }
}

function textClick(e, btn){
    if(e.keyCode == 13){
        document.getElementById(btn).click();
        return false;
    }
}