var webroot = '';

var searchStr;

if (document.getElementById('searchStr'))
{
    searchStr = document.getElementById('searchStr').value;
}

function SubmitSearch ()
{
    LocalAjax = new Ajax ('/Search/ShowResults.html', 'search='+searchStr, makingSearch, showResults);
    LocalAjax.makeRequest ();
}

function makingSearch ()
{
    var theDiv = document.getElementById('search_form');

    theDiv.innerHTML = 'Ieškoma...';
}

function showResults ()
{
    document.location.href = webroot+'/Search/ShowResults.html';
}
