نتایج جستجو برای: 3 ivig

تعداد نتایج: 1813061  

2013
Tiffany L. Sudduth Abigail Greenstein Donna M. Wilcock

Gammagard IVIg is a therapeutic approach to treat Alzheimer’s disease currently in phase 3 clinical trials. Despite the reported efficacy of the approach the mechanism of action is poorly understood. We have previously shown that intracranial injection of anti-A antibodies into the frontal cortex and hippocampus reveals important information regarding the time course of events once the agent is...

Journal: :Allergologia et immunopathologia 2006
A C Mahieu A M Sisti S Joekes M J Manfredi

INTRODUCTION Intravenous immunoglobulin (IVIG) therapy is an effective treatment in patients with different diseases. This product must comply with all the regulatory requirements established by the World Health Organization and the European Pharmacopoeia for clinical tolerance, therapeutic efficacy, and viral safety. Although IVIG are effective and safe products, in some patients they may caus...

2015
Toshimasa Nakada

Appropriate therapy during the acute phase of Kawasaki disease to prevent large coronary artery lesions (CAL) has not been established. The aim of this retrospective study was to investigate the usefulness of an initial single intravenous immunoglobulin (IVIG) therapy. In this study, I included a total of 200 pediatric patients who had received 2g/kg/day IVIG therapy for Kawasaki disease betwee...

Journal: :Blood 2006
Stephan von Gunten Alexander Schaub Monique Vogel Beda M Stadler Sylvia Miescher Hans-Uwe Simon

Human intravenous immunoglobulin (IVIg) preparations are increasingly used for the treatment of autoimmune diseases. Earlier work demonstrated the presence of autoantibodies against Fas in IVIg, suggesting that IVIg might be able to induce caspase-dependent cell death in Fas-sensitive cells. In this study, we demonstrate that sialic acid-binding Ig-like lectin 9 (Siglec) represents a surface mo...

2016
Hye Young Lee Min Seob Song

PURPOSE We conducted a study to determine which factors may be useful as predictive markers in identifying Kawasaki disease (KD) patients with a high risk of resistance to intravenous immunoglobulin (IVIG) and developing coronary artery lesions (CAL). METHODS We enrolled 287 patients in acute phase of KD at a single center. The demographic, clinical and laboratory data were collected retrospe...

2012
H. S. Patwa V. Chaudhry H. Katzberg A. D. Rae - Grant Y. T. So

Objective: To assess the evidence for the efficacy of IV immunoglobulin (IVIg) to treat neuromuscular disorders. Methods: The MEDLINE, Web of Science, and EMBASE databases were searched (1966–2009). Selected articles were rated according to the American Academy of Neurology’s therapeutic classification of evidence scheme; recommendations were based on the evidence level. Results and Recommendat...

2013
Gilles Dietrich

Pooled normal polyspecific IgG for therapeutic use (IVIg) contain anti-idiotypes against idiotypic determinants expressed by autoantibodies from patients with a variety of autoimmune diseases. In the present study, antiidiotypes in IVIg are shown to recognize a cross-reactive idiotype on human anti-thyroglobulin (TG) autoantibodies, that was defined by heterologous antiidiotypic antibodies, ter...

Journal: :Revista brasileira de reumatologia 2010
Rozana Gasparello de Almeida Andréa Valentim Goldenzon Marta Cristine Félix Rodrigues Flávio Roberto Sztajnbok Maria Ignez Capella Gaspar Elsas Sheila Knupp Feitosa de Oliveira

OBJECTIVES To describe a population of children diagnosed with Kawasaki's disease (KD) in pediatric rheumatology centers of Rio de Janeiro, Brazil, defining the magnitude of the delay period in diagnosing KD and initiating treatment due to confusion with common childhood febrile illnesses and the impact of this delay on the frequency of coronary sequels. METHODS Data analysis from hospital re...

Journal: :Acta dermato-venereologica 2000
M Kroiss T Vogt M Landthaler W Stolz

Sir, Recently, positive effects of high-dose intravenous immunoglobulin (IVIG) (2 g/kg body weight) have been observed in immune thrombocytopenic purpura (ITP) (1, 2) as well as in autoimmune blistering diseases (3). Furthermore, successful treatments of autoimmune chronic urticaria with high-dose IVIG was reported (4). Herein, we describe a very bene®cial effect in a patient with a long-standi...

Journal: :Neurology 2012
H S Patwa V Chaudhry H Katzberg A D Rae-Grant Y T So

OBJECTIVE To assess the evidence for the efficacy of IV immunoglobulin (IVIg) to treat neuromuscular disorders. METHODS The MEDLINE, Web of Science, and EMBASE databases were searched (1966-2009). Selected articles were rated according to the American Academy of Neurology's therapeutic classification of evidence scheme; recommendations were based on the evidence level. RESULTS AND RECOMMEND...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->