
var liveSearchTimeout;

function search_fonds(value){

    if (value.length < 3) return true;

    if (liveSearchTimeout) {
        clearTimeout(liveSearchTimeout);
    }
    liveSearchTimeout = setTimeout('vytvoritZadost("ajax.php/' + LAYOUT + '&event:e_id=E_LIVE_SEARCH&e_to=fondlist&search='+value+'")',300);
}

