﻿var booSearchIsFocused = false;

function SetSearchFocus(pbooToggle)
{

    booSearchIsFocused = pbooToggle;
 
}

$(document).ready(function() {
    var $btn = $('#btnSearch,#ctl00_btnSearch');
    var $form = $btn.parents('#bottomheader');
    $form.keypress(function(e) {
        if (e.which == 13 && e.target.type != 'textarea') {
            if ($btn[0].type == 'submit' || $btn[0].type == 'image') {
                $btn[0].click();
            } else {
                eval($btn[0].href);
            }
            return false;
        }
    });
}); 