نتایج جستجو برای: chronic mercury exposure

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

Journal: :British journal of industrial medicine 1961
J C GAGE

Rats have been exposed for varying periods to an atmosphere containing 1 mg./cu.m. mercury vapour. The toxic effects produced showed resemblances to signs of mercurialism in man. An attempt has been made to study the kinetics of absorption and excretion of mercury from measurements of the amounts excreted and stored in the tissues. The efficiency of absorption of mercury by the rat lung is abou...

Journal: :Environmental Health Perspectives 2002
Thomas W Clarkson

The three modern "faces" of mercury are our perceptions of risk from the exposure of billions of people to methyl mercury in fish, mercury vapor from amalgam tooth fillings, and ethyl mercury in the form of thimerosal added as an antiseptic to widely used vaccines. In this article I review human exposure to and the toxicology of each of these three species of mercury. Mechanisms of action are d...

2013
Larry Gray

................................................................................................................................................. 3 Introduction ............................................................................................................................................ 3 Health Risks from Long-term Exposure to Mercury and the Link to Coal-Fired Power Plants ........

Journal: :Journal of wildlife diseases 2002
Charles H Jagoe A Lawrence Bryan Heather A Brant Thomas M Murphy I Lehr Brisbin

Bald eagles (Haliaeetus leucocephalus) may be at risk from contaminants in their diet and young birds may be particularly sensitive to contaminant exposure. To evaluate potential risks from dietary mercury exposure to eagle nestlings in South Carolina (USA), we surveyed mercury concentrations in 34 nestlings over two breeding seasons (1998 and 1999). Samples were also obtained from several post...

2006

When 'mercury' is released into the environment it may appear as, or be converted into, any of the following chemical forms: metallic mercury (Hg) inorganic mercury (Hg + and Hg *) monomethyl mercury (CH3 Hg+) dimethyl mercury (CH3 Hg CH3) The 'methyl mercury' discussed in this appendix is monomethyl mercury (CH3 Hg+) 1. Man (a) Adult (i) Occupational exposure lab personnel industrial workers a...

2006
Darja Kobal Grum Alfred B. Kobal Niko Arnerič Milena Horvat Bernard Ženko Sašo Džeroski Joško Osredkar

In this study, we evaluated the impact of long-term occupational exposure to elemental mercury vapor (Hg0) on the personality traits of ex-mercury miners. Study groups included 53 ex-miners previously exposed to Hg0 and 53 age-matched controls. Miners and controls completed the self-reporting Eysenck Personality Questionnaire and the Emotional States Questionnaire. The relationship between the ...

Journal: :Nephrology, dialysis, transplantation : official publication of the European Dialysis and Transplant Association - European Renal Association 2001
S Aymaz O Gross B Krakamp M Ortmann H P Dienes M Weber

Mercury is a silvery white liquid metal that is volatile at room temperature due to its high vapour pressure. It exists in different oxidation states and can form a number of compounds. Mercury and its compounds can be absorbed into the human body by inhalation, ingestion, and through the skin. It is toxic when certain threshold values are exceeded. Acute toxicity is due to the inactivation of ...

Journal: :Environmental health and preventive medicine 2006
Shun'ichi Honda Lars Hylander Mineshi Sakamoto

Mercury is a metal that has long been used because of its many advantages from the physical and chemical points of view. However, mercury is very toxic to many life forms, including humans, and mercury poisoning has repeatedly been reported. The main chemical forms of mercury are elemental mercury (Hg(0)), divalent mercury (Hg(2+)) and methylmercury (CH(3)-Hg(+)), the toxicities and metabolisms...

ژورنال: طب کار 2019

Introduction: dentists are exposed to mercury vapor due to occupational exposure to amalgam Which can endanger their health. the aim of this study was to measure the concentration of urinary mercury in dental students and the restorative specialists one of the dental schools in Iran in order to determine the effect of mercury vapor on them. Methods: The study population Including 40 dental stu...

ژورنال: سلامت کار ایران 2013
ابراهیمی, علی, شیرخانلو, حمید, فقیهی زرندی, علی, بانشی, محمد رضا , کیان, محمد جواد, گلبابایی, فریده ,

Background and aims: Sampling of toxic mercury vapors (Hg0) is necessary for determination of occupational exposure levels of workers exposed to this contaminant. Given the tendency of carbon nanotubes for mercury adsorption, carbon nanotubes can be expected to be suitable sampling media for mercury. The aim of this study was to compare the performance of multi-walled and single-walled carbon n...

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

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

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