نتایج جستجو برای: jejunoileal atresia

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

2012
Eun Young Chang Hye Kyung Chang Seok Joo Han Seung Hoon Choi Eui Ho Hwang Jung-Tak Oh

PURPOSE Treatment for esophageal atresia has advanced over several decades due to improvements in surgical techniques and neonatal intensive care. Subsequent to increased survival, postoperative morbidity has become an important issue in this disease. The aim of our study was to analyze our experience regarding the treatment of esophageal atresia. METHODS We reviewed and analyzed the clinical...

Journal: :International journal of pediatric otorhinolaryngology 2013
Joseph B Roberson Hernan Goldsztein Ashley Balaker Stephen A Schendel John F Reinisch

OBJECTIVE Describe anatomical and radiological findings in 742 patients evaluated for congenital aural atresia and microtia by a multidisciplinary team. Develop a new classification method to enhance multidisciplinary communication regarding patients with congenital aural atresia and microtia. METHODS Retrospective chart review with descriptive analysis of findings arising from the evaluation...

Journal: :AJNR. American journal of neuroradiology 1984
R Tadmor M Ravid D Millet G Leventon

During a 3-year period, nine girls and two boys (age range, 2 days-13 years) with congenital choanal atresia were evaluated by computed tomography (CT). Other associated congenital anomalies, primarily craniofacial anomalies, were present in six of the 11 patients. In six patients the atresia was bilateral and consisted of both bony and membranous components. Of the five patients with unilatera...

Journal: :Journal of the Chinese Medical Association : JCMA 2004
Fu-Nan Cho Tsung-Lung Yang Yuen-Yee Kan Ping-Kuang Sung

Most cases of isolated nonduodenal bowel atresia are thought to be due to ischemic events from hypotension, vascular accident, volvulus, intussusception and cocaine. We present a case of isolated ileal atresia suggested using results of prenatal sonography which showed multiple markedly dilated fluid-filled intestinal loops with changeable shapes and positions secondary to active peristalsis. P...

2011
R. V. Suresh Kumar

caecum (Figure 2) was observed and it was Atresia coli is a lethal congenital abnormality in decompressed and sutured. Blind termination of spiral calves and other animals (Syed and Shanks, 1992). colon, distal loop and transverse colon were absent. This condition is caused by an incomplete digestive The areolar tissue between caecum and terminal spiral tract, due to part of the colon being mis...

2017
Said Anajar Jawad Hassnaoui Sami Rouadi Reda Abada Mohammed Roubal Mohammed Mahtar

INTRODUCTION Adult choanal atresia is a rare congenital malformation of the nasal cavity characterized by the complete obliteration of the posterior choanae, only ninth cases are reported in the literature, we present in our observation the tenth case of adult bilateral choanal atresia. PRESENTATION OF CASE A 18-year-old man presented at our department with complaints of nasal obstruction, na...

Journal: :Journal of pediatric surgery 2001
D B Tashjian K P Moriarty

In a patient with duodenal atresia, a "double bubble" is classically present on plain radiographs. When bowel gas exists distal to the duodenum, duodenal atresia often is excluded from the differential diagnosis. The authors present a case in which contrast can be seen in the small bowel and biliary system on upper gastrointestinal series in a patient with duodenal atresia and an anomalous comm...

Journal: :The Journal of laryngology and otology 1945
A DURWARD O C LORD C J POLSON

Congenital choanal atresia (CCA) is the developmental failure of the nasal cavity to communicate with the nasopharynx. Bilateral choanal atresia is potentially life threatening in newborns. Most of these cases present early in life with cyclical phases of respiratory distress and apnoea, which gets relieved by crying. In fewer cases it goes undiagnosed to present in adult life with rhinorrhoea ...

Journal: :Archives of disease in childhood 1998
H Narchi

Oesophageal atresia usually occurs without any genetic background. Three cases associated with Fanconi's anaemia are reported. One neonate had growth retardation and numerous malformations including oesophageal atresia and four other components of the VACTERL association. In the two others, oesophageal atresia was isolated. In patients with such malformations an early diagnosis of Fanconi's ana...

Journal: :The Medical journal of Malaysia 2002
J C Ramesh Lu D Balasingh A Qureshi

We report a neonate with anorectal atresia in whom preoperative evaluation prior to definitive operation revealed a short gap atresia. However, bidigital evaluation at operation revealed a septal atresia that was easily perforated from below through the anus. Unnecessary division of the anorectal sphincter complex was thus avoided.

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

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

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