function initSearchForm(appKey)
{
    $('button.searchRun').click(function(){
        theHREF = $(this).attr("href");
        $('#sResults').html('<em>Searching...</em>');
        $.post(
            FE_site_url() + 'FEappRPC/search',
            {
                ajax: 1,
                searchTerm: $('#searchTerm').val(),
                appKey: appKey
            },
            function(data)
            {
                if (data.result)
                {
                    $('#sResults').html(data.html);
                }
            },
            "json"
        );
        $(this).blur();
        return false;
    });
}
