function tootSearchSubmit() {
    if (document.tootSearch.query.value == "") {
        document.tootSearch.query.focus();
    } else {
        document.tootSearch.submit();
    }
}
