نتایج جستجو برای: occupational opportunity

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

Journal: :International journal of environmental research and public health 2018
Andrzej Marcinkiewicz Wojciech Hanke Paweł Kałużny Agnieszka Lipińska-Ojrzanowska Marta Wiszniewska Jolanta Walusiak-Skorupa

Worldwide epidemiological data indicates insufficient diagnosis of diabetes as an increasing public health problem. In the search for solutions to this disadvantageous situation, occupational medicine health services seem to open up a unique opportunity to recognize some abnormalities in the early stages, especially among the asymptomatic working-age population. 316 workers underwent obligatory...

2013
D Coggon G Ntani

information on SES, residential history, reproduction, prescribed medicine, and comorbidity has been added to each case and control. Finally, a JEM on potential carcinogens can be applied. Results Results confirm increased risk for e.g. lung and bladder cancer among painters and for nasal cancer in wood dust exposed workers. On the other hand, farmers, gardeners and forestry workers had deficit...

Journal: :Occupational medicine 2000
M C Bricknell T O Jefferson C Black T Cornwell

This paper describes the development of the Army Health Policy (AHP), which is a key component of the Army Human Resources Strategy (AHRS). The work on the AHP provided an opportunity for a fundamental review of the delivery of health support to the Army. The AHP will provide the strategic framework by which the Army will ensure the health of its workforce and, where appropriate, their dependen...

Journal: :American Journal of Occupational Therapy 2022

Abstract Date Presented 04/02/2022 The Accreditation Council for Occupational Therapy Education® (ACOTE®) requires OT and assistant educational programs to include intraprofessional collaboration activities in their curriculum. We conducted a survey of all the OTA United States. Results indicate that 21% do not an opportunity collaboration. This also examines types length are offered by Primary...

Journal: :Prehospital and Disaster Medicine 1999

Journal: :گام های توسعه در آموزش پزشکی 0
حسین صافی زاده hossein safizadeh متخصص پزشکی اجتماعی، استادیار گروه پزشکی اجتماعی، دانشکده پزشکی، دانشگاه علوم پزشکی کرمان، کرمان، ایران

0

2008
Marcello La Rosa Jan Mendling

Business process models are a suitable means to describe the temporal and logical order of tasks for achieving a given goal. Therefore they become crucial in the coordination of intervention actions to efficiently recover from a disaster or tragic event. Past experience is vital in handling these scenarios, but every new emergency would almost always present peculiar characteristics. So althoug...

2014
Toke S. Aidt Gabriel Leon

We show that drought-induced changes in the intensity of riots lead to moves towards democracy in sub-Saharan Africa, and that these changes are often a result of concessions made as a result of the riots. This provides evidence that low-intensity conflict can have a substantial short-run impact on democratic change, and supports the “window of opportunity” hypothesis: droughts lead to an incre...

Journal: :Radiation Measurements 2021

The European Radiation Dosimetry Group, EURADOS, has organised an intercomparison study on the usage of ICRP/ICRU voxel reference computational phantoms together with radiation transport codes. Voluntary participants have been invited to solve specific tasks and provide solutions organisers before a certain deadline. be solved are practical interest in occupational, environmental medical dosime...

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

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

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