function ShowHide(id){ var obj = e(id); var Load = e(id+'Load'); if(obj.style.display != 'none'){ obj.style.display = 'none'; }else{ obj.style.display = ''; if(Load.innerHTML==''){ Load.innerHTML = 'Загрузка . . .'; JsHttpRequest.query ( "http://biznes-info.com.ua/js/ajax/LoadSearchParam.js.php", { "func": id }, function (result, errors){ var LA = result.result; var str = ''; }, true ) } } }