نتایج جستجو برای: kashan city

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

2015
Hasan Afzali Farzaneh Firoozeh Atena Amiri Rezvan Moniri Mohammad Zibaei

CONTEXT The CTX-M family consists of more than 50 β-lactamases, which are grouped on the basis of sequences into five subtypes including CTX-M-1, CTX-M-2, CTX-M-8, CTX-M-9 and CTX-M-25. OBJECTIVES The current study aimed to detect subtypes of CTX-M extended-spectrum β-lactamases (ESBLs) among ESBL positive Klebsiella isolates from patients in Kashan, Iran. MATERIALS AND METHODS A total of 1...

Journal: :iranian journal of psychiatry and behavioral sciences 0
zahra sepehrmanesh department of psychiatry, kashan university of medical sciences, kashan, iran afshin ahmadvand rezvan saei

drug abuse has high co-morbidity with mental disorders, thus, controlling and treating it requires multimodal treatment intervention. this cross sectional study evaluates personality traits of 67 ïv heroin abusers in kashan prison. the utilized instruments included two parts: a demographic questionnaire and mmpï. the data obtained from the questionnaires were statistically analyzed by using fis...

Journal: :iranian journal of public health 0
a masoud

migraine is one of the common varieties of headache. it involves 4 to 6 percent of men and 13 to 16 percent of women under 30 years in more than 80% of cases. some studies have shown that in 50% of patients serum magnesium level decreases during attacks of headache and using magnesium tablets and intravenous magnesium sulfate is more effective for treatment of migraine attack, than placebo. thi...

2012
Davood Aghadoost Mohammad Reza Fazel Hamid Reza Aghadoost

BACKGROUND Ocular trauma is a significant health problem in pediatric patients. OBJECTIVES The aim of this study was to analyze the characteristics of ocular-trauma-related hospitalization of children in Kashan. PATIENTS AND METHODS This descriptive, cross-sectional study included 131 children aged less than 16 years with ocular trauma, who were admitted to the Matini Hospital at the Kashan...

Journal: :international journal of geo science and environmental planning 0
mahtab rajabi graduate student of islamic azad university ardestan shadi yazdanmehr graduate student of islamic azad university ardestan mohamad kamali graduate student of islamic azad university ardestan

this study evaluates the lifelikeness layers of boroujerdi’s house in kashan as a case study to analyze the houses of islamic period, especially qajar era. why traditional iranian architecture was considered as sustainable architecture? what are the elements included in the traditional architecture to take the most advantage of the least facilities? what elements does the modern architecture la...

Introduction: Elder abuse is among the major social health problems in today`s communities, and has significant effect on decreasing the health and security level in this group. The current study aimed to evaluate the prevalence and associated factors of abuse among the elderly in Kashan, Iran. Materials and methods: This cross sectional study was conducted on 500 people over 60 years old ...

2011
Ahmad Khorshidi Rezvan Moniri

Introduction and objective: Klebsiella is an opportunistic pathogen that is an important cause of nosocomial infections. The prevalence of extended spectrum beta-lactamases (ESBLs)-producing strains and their resistance to betalactam antibiotics has had a daily increase. Because of the importance of these enzymes in Klebsiella pneumonia, this study was carried out to investigate it’s prevalence...

2015
Foroogh Neamati Farzaneh Firoozeh Mahmood Saffari Mohammad Zibaei

BACKGROUND Urinary tract infection (UTI) is one of the most prevalent infectious diseases. Uropathogenic Escherichia coli (UPEC), as the most important cause of UTI, are associated with a number of virulence factors. OBJECTIVES The current study aimed to investigate the virulence associated determinants as well as their patterns of antibiotic resistance in UPEC isolated from hospitalized pati...

2013
Zahra Chitsazian Batool Zamani Maryam Mohagheghfar

BACKGROUND Hyponatremia is a common disorder in patients with brain injury. It can result in acute and chronic complications providing this electrolytic disorder is not diagnosed and treated in due time. OBJECTIVES The aim of this study was to evaluate the prevalence of hyponatremia in 95 brain injury patients hospitalized in the intensive care unit (ICU) in Kashan Shahid-Veheshti hospital. ...

2017
Farzaneh Firoozeh Zeinab Mahluji Ehsaneh Shams Ahmad Khorshidi Mohammad Zibaei

Background and Objectives New Delhi metallo-ß-lactamase (NDM) is a newly emerging metallo-ß-lactamases, which can destroy all β-lactams including carbapenems. Therefore, this study aimed at evaluating New Delhi metallo-ß-lactamase-1-production in clinical isolates of Klebsiella pneumoniae in Kashan, Iran. Materials and Methods In a cross-sectional study, 181 K. pneumoniae isolates were collec...

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

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

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