نتایج جستجو برای: pituitary hormones

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

Journal: :Investigative ophthalmology & visual science 1977
W K O'Steen S L Kraeer

Prepubertal removal of the pituitary gland, which in young animals influences sexual maturation, reduces significantly the amount of retinal photoreceptor destruction when the rats are exposed to continuous illumination in adulthood. When crude pituitary gland homogenate is administered to adult rats hypophysectomized prior to puberty, photoreceptor destruction is more severe. Transplantation o...

2012

This chapter explores the hypothalamo-pituitary system and provides a brief description of the principal hormones of the anterior and posterior lobes of the pituitary gland. The actions of the individual hormones are discussed in further detail in the chapters dealing with their target glands: hormonal control of the thyroid, parathyroid and adrenal glands is discussed in Chapter 16, hormonal c...

2014
C Stancu M Coculescu

BACKGROUND Colocalization analysis of confocal fluorescence and electron microscopy (EM) are important tools to detect the expression of multiple anterior pituitary hormones within the same cell. Heterozygous (Men1+/-) mice developed pituitary tumors, mostly reported somatolactotrophinomas and ACTH secreting pituitary adenomas but also nonfunctioning tumors. The aim of the study was to run immu...

2009
S Errarhay I Kamaoui C Bouchikhi H Châara H Bouguern S Tizniti A Melhouf A Banani

Post-partum pituitary necrosis (Sheehan's syndrome) is a rare complication of post-partum hemorrhage. The diagnosis can be erratic and often delayed. In this case report of Sheehan's syndrome in the post-partum period, the signs were characterized by agalactia, severe hypoglycemia, and low serum levels of thyroid hormones, cortico-adrenal hormones, and gonadotrophin (FSH, LH). The hypophyseal m...

2003
WILLIAM C. STADIE NIELS HAUGAARD JULIAN B. MARSH

There is abundant evidence that pituitary and adrenal cortical hormones influence insulin so as to produce marked alterations in its customary action on tissue metabolic patterns. There is little doubt that this reciprocal influence is manifest in many types of tissue and is particularly well established in the cases of liver and muscle. The injection of pituitary or adrenal hormones into norma...

Journal: :medical journal of islamic republic of iran 0
fereidoun azizi department of endocrine research center, shahid beheshti university of medical sciences, tehran, iran.

during the islamic lunar month of ramadan millions of muslims abstain from drinking and eating from dawn to sunset. the objective of this study was to investigate the effect of intermittent islamic fasting on reproductive function, hypothalamic-pituitary-thyroid axis and the peripheral metabolism of thyroid hormones in men. we measured serum levels of fsh. lh, testosterone, prolactin, fsh, t4 a...

Journal: :The Journal of biological chemistry 1952
W C STADIE N HAUGAARD J B MARSH

There is abundant evidence that pituitary and adrenal cortical hormones influence insulin so as to produce marked alterations in its customary action on tissue metabolic patterns. There is little doubt that this reciprocal influence is manifest in many types of tissue and is particularly well established in the cases of liver and muscle. The injection of pituitary or adrenal hormones into norma...

Journal: :British journal of industrial medicine 1990
E M Erfurth A Schütz A Nilsson L Barregård S Skerfving

Exposure to elemental mercury (Hg) vapour results in an accumulation of Hg in the pituitary, the thyroid, and the testis. In this study, basal serum concentrations of pituitary hormones (thyrotrophin (TSH), prolactin (PRL), follicle stimulating hormone (FSH), and luteinising hormone (LH] or their response after administration of thyrotrophin and gonadotrophin releasing hormones did not differ b...

Journal: :Biocell : official journal of the Sociedades Latinoamericanas de Microscopia Electronica ... et. al 2009
Matías Pandolfi Maximiliano M Cánepa Fernando J Meijide Felipe Alonso Graciela Rey Vázquez M Cristina Maggese Paula G Vissio

Many characteristics of the South American teleost fish Cichlasoma dimerus (body size, easy breeding, undemanding maintenance) make it amenable to laboratory studies. In the last years, many of the fundamental aspects of its reproductive and developmental biology have been addressed in our laboratory. Rather recently, the immunohistochemical localization of pituitary hormones involved in reprod...

Journal: :Journal of molecular endocrinology 2011
Christopher J Romero Elyse Pine-Twaddell Sally Radovick

The pituitary gland produces hormones that play important roles in both the development and the homeostasis of the body. A deficiency of two or several of these pituitary hormones, known as combined pituitary hormone deficiency, may present in infants or children due to an unknown etiology and is considered congenital or idiopathic. Advancements in our understanding of pituitary development hav...

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

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

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