

function SRSocialeSearch(action) {
    var strSearch = document.getElementById('txtboxSearch').value;
    location.href = action + strSearch;
    return false;
}

function SRSocialeSearch_KeyDown(e, action) {

    if (e.keyCode == 13 || e.keyCode == 10) {
        e.returnValue = false;
        SRSocialeSearch(action);
        return false;
    }
}
