نتایج جستجو برای: alternative therapies

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

2013
Nerino Allocati Michele Masulli Mikhail F. Alexeyev Carmine Di Ilio

Escherichia coli remains one of the most frequent causes of several common bacterial infections in humans and animals. E. coli is the prominent cause of enteritis, urinary tract infection, septicaemia and other clinical infections, such as neonatal meningitis. E. coli is also prominently associated with diarrhoea in pet and farm animals. The therapeutic treatment of E. coli infections is threat...

Journal: :Complementary therapies in clinical practice 2011
Jim Rogers

The popularity and use of complementary and alternative therapies and medicines (CAM) has remained high in the UK and many other countries over at least the last two decades. Access to such modalities via publicly funded health and welfare systems has remained very limited over the same period. Personal health budgets, designed to offer significant control and personal choice over health care, ...

Journal: :Maturitas 2016
Luis Danckers Juan E Blümel Silvina Witis María S Vallejo Konstantino Tserotas Hugo Sánchez Carlos Salinas Javier Saavedra José A Rojas William Onatra Eliana Ojeda Desireé Mostajo Flory Morera Alvaro Monterrosa Armando Montaño Nelva Meruvia Mabel Martino Jaime Martínez Selva Lima Erik González Gustavo Gómez María T Espinoza Olivia Castillo Blanca Campostrini Andrés Calle Gerardo Broutin Ascanio Bencosme Eugenio Arteaga Félix Ayala Peter Chedraui

BACKGROUND Previously, the REDLINC VI study showed that the main reason for the low use of menopausal hormone therapy (MHT) was its low rate of prescription by doctors. OBJECTIVE To determine the use of MHT and perceived related risks among gynecologists. METHODS A self-administered and anonymous questionnaire was delivered to certified gynecologists in 11 Latin American countries. RESULT...

Journal: :Cadernos de saude publica 2003
Leticia Krauss Silva

This article briefly presents the target factors and methods for summarizing evidence employed in a technological evaluation, as well as the underlying logic in their elaboration and utilization in the field of public health. The example is post-menopausal osteoporosis, analyzing the current timeliness of disseminating bone densitometry and technologies to combat osteoporosis in Brazil Availabl...

Journal: :Pediatrics in review 2015
Tecile Prince Andolino Jessica Reid-Adam

On the basis of observational studies, the most common cause of nephrotic syndrome in school-aged children is minimal change disease. On the basis of research evidence and consensus, corticosteroids are considered first-line therapy for treatment of nephrotic syndrome. On the basis of consensus, prednisone therapy should be initiated at doses of 60 mg/m2 per day (2 mg/kg per day) administered f...

2015
Xinjun Wang Jieyun Yin

Chronic constipation, an ancient disease, is prevalent, and costly in the general population. Complementary and alternative therapies are frequently used for constipation. This review introduces various methods of complementary and alternative therapies, including acupuncture, moxibustion, massage, and herbal medicine. Efficacy, safety, influence factors, sham control design, and mechanisms of ...

Journal: :Neurology 2011
E Matthews S Portaro Q Ke R Sud A Haworth M B Davis R C Griggs M G Hanna

OBJECTIVES Acetazolamide has been the most commonly used treatment for hypokalemic periodic paralysis since 1968. However, its mechanism of efficacy is not fully understood, and it is not known whether therapy response relates to genotype. We undertook a clinical and genetic study to evaluate the response rate of patients treated with acetazolamide and to investigate possible correlations betwe...

Journal: :BMC Dermatology 2006
Kim A Papp Darryl Toth Les Rosoph

BACKGROUND Efalizumab is a humanized recombinant monoclonal IgG1 antibody for the treatment of moderate-to-severe plaque psoriasis. When treatment discontinuation is necessary, however, some patients may experience inflammatory recurrence of the disease, which can progress to rebound if untreated. This analysis evaluated approaches for managing inflammatory recurrence after discontinuation of e...

Journal: :The Medical journal of Malaysia 1994
S Sonkusare

Vomiting in pregnancy is a very common phenomenon, though not well understood. The extreme form, hyperemesis gravidarum can lead to severe complications. Articles published in the last decade in this field were searched and studied. Various aetiological factors were identified, the recent ones being the association of Helicobacter. pylori with hyperemesis, as well as the presence of cell free f...

Journal: :Lancet 1990
F S Bagenal D F Easton E Harris C E Chilvers T J McElwain

The Bristol Cancer Help Centre (BCHC) was set up in 1979 to offer various alternative therapies and treatments for patients with cancer. It attracted much public interest and a high demand for its services--and profound medical scepticism. In a study beginning in 1986 of 334 women with breast cancer attending the centre for the first time between June, 1986, and October, 1987, information about...

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

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

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"; } -->