(function() {
	// Private functions and variables
	var hart_div;

	//{{{ DOM work
	function hv_all(list, fn) { //{{{
		var idx;
		var all = true;

		for (idx in list) {
			if (!fn(list[idx])) {
				all = false;
			}
		}

		return all;
	} //}}}

	function hv_check_dom_item(name) { //{{{
		if (!document[name]) {
			// If we don't have the DOM methods, we can't use them to show the error.
			document.open();
			document.write("<strong>Error:</strong> Your browser doesn't support "+name+".<br />");
			document.close();
			return false;
		} else {
			return true;
		}
	} //}}}

	function hv_check_dom() { //{{{
		var items = [
			'getElementById',
			'createElement',
			'insertBefore',
			'appendChild',
			'getElementsByTagName'
		];

		return hv_all(items, hv_check_dom_item);
	} //}}}

	function hv_find_by_class(root, tag_name, class_name) { //{{{
		var i, end;
		var tags = root.getElementsByTagName(tag_name);
		var re = new RegExp('\\b'+class_name+'\\b');

		// Safari bugs out here when using for-in syntax.
		end = tags.length
		for (i = 0; i < end; ++i) {
			if (tags[i].className && tags[i].className.match(re)) {
				return tags[i];
			}
		}
	} //}}}

	//}}} end DOM
	//{{{ CSS wrangling
	var head;

	function css_find_head() { //{{{
		var heads = document.getElementsByTagName('head');
		if (heads.length >= 1) {
			return heads[0];
		}

		// No HEAD section? Build me a new one!
		var head_elt = document.createElement('head');

		// make sure it has a child to insert before
		var head_text = document.createTextNode('');
		head_elt.appendChild(head_text);

		// add head to the document
		document.insertBefore(head_elt, document.firstChild);

		return head_elt;
	} //}}}

	function css_new_link(sheet) { //{{{
		var elt = document.createElement('link');
		elt.setAttribute('rel',  'stylesheet');
		elt.setAttribute('type', 'text/css');
		elt.setAttribute('href', sheet);

		return elt;
	} //}}}

	function css_add(sheet, is_override) { //{{{
		var link = css_new_link(sheet);

		if (!head) {
			head = css_find_head();
		}

		if (is_override) {
			head.appendChild(link); // add last to take precedence over designer
		} else {
			head.insertBefore(link, head.firstChild); // add first
		}
	} //}}}

	//}}} end CSS
	//{{{ Selection handling - see docs/load-template.txt!!
	var clear_iv = null;
	var clear_sel;
	var deny_r; // Range which we deny selecting from.

	function hv_should_clear(s_e, e_s) { //{{{
		// if they are equal, or either one is zero, then the selection is allowed (should not clear)
		return !(s_e === e_s || s_e === 0 || e_s === 0);
	} //}}}

	function hv_should_clear_range(sel_r) { //{{{
		var s_e = deny_r.compareBoundaryPoints(Range.END_TO_START, sel_r);
		var e_s = deny_r.compareBoundaryPoints(Range.START_TO_END, sel_r);
		return hv_should_clear(s_e, e_s);
	} //}}}


	function hv_clearsel_std() { //{{{
		var s = window.getSelection();

		if (s.rangeCount === 0 || !s.toString()) { // nothing selected
			return;
		}

		var i;
		var count = s.rangeCount;

		for (i = 0; i < count; ++i) {
			if (hv_should_clear_range(s.getRangeAt(i))) {
				s.removeAllRanges();
				return;
			}
		}
	} //}}}

	function hv_clearsel_std_safari() { //{{{
		var s = window.getSelection();

		if (s.rangeCount === 0 || !s.toString()) { // nothing selected
			return;
		}

		var sel_r = document.createRange();
		sel_r.setStart(s.anchorNode, s.anchorOffset);
		sel_r.setEnd(s.focusNode, s.focusOffset);

		if (hv_should_clear_range(sel_r)) {
			s.removeAllRanges();
		}
	} //}}}

	function hv_clearsel_ie() { //{{{
		var s = document.selection;

		// IE docs are inconsistent with capitalization
		if (s.type !== "Text" && s.type !== "text") {
			return;
		}

		var sel_r = s.createRange();

		if (hv_should_clear(deny_r.compareEndPoints("StartToEnd", sel_r),
				                deny_r.compareEndPoints("EndToStart", sel_r)))
		{
			s.empty();
		}
	} //}}}

	function hv_clearsel_null() { //{{{
		clearInterval(clear_iv);
		clear_iv = null;
	} //}}}


	function hv_sel_setup_std() { //{{{
		var gs = {};
		var s;
		var create = document.createRange;

		if (!create) { return hv_clearsel_null; } // improbable

		s = window.getSelection();
		gs.rm_all = s.removeAllRanges;
		gs.get_at = s.getRangeAt;

		deny_r = document.createRange();
		deny_r.selectNode(hart_div);

		if (gs.get_at)      { return hv_clearsel_std; }
		else if (gs.rm_all) { return hv_clearsel_std_safari; }
		else                { return hv_clearsel_null; } // improbable
	} //}}}

	function hv_sel_setup_ie() { //{{{

		deny_r = document.body.createTextRange();
		deny_r.moveToElementText(hart_div);

		return hv_clearsel_ie;
	} //}}}

	function hv_sel_find() { //{{{
		// select a clear_sel function based on what will work in the browser;
		// this means we're not doing a browser-detect every 33 ms
		var get_sel = window.getSelection;
		var ie_sel  = (document.selection && document.selection.empty);

		if (get_sel)     { return hv_sel_setup_std(); }
		else if (ie_sel) { return hv_sel_setup_ie(); }
		else             { return hv_clearsel_null; }
	} //}}}


	function hv_sel_setup() { //{{{
		if (clear_iv !== null) {
			clearInterval(clear_iv);
		}

		clear_sel = hv_sel_find();
		clear_iv  = setInterval(clear_sel, 33);
	} //}}}

	//}}} end selection

	//{{{ Bootup; all template substitutions MUST be isolated to this section to ease maintenance.
	var booted = {};
	function hv_boot_set_div(div_id) { //{{{
		// Protect against double-boot
		if (booted.set_div === true) { return; }
		booted.set_div = true;

		if (!document.getElementById) { return false; } // improbable

		if (!div_id) { div_id = 'hart_viewer'; }
		hart_div = document.getElementById(div_id);
		return true;
	} //}}}

	function hv_boot_embed() { //{{{
		// Protect against double-boot
		if (booted.embed === true) { return; }
		booted.embed = true;

		// Boot sequence: check browser support, then do work.
		if (!hv_check_dom()) { return; }
		if (booted.set_div !== true) { hv_boot_set_div(); }

		css_add('http://hartonweb.com/System/css/default.css',  false);
		css_add('http://hartonweb.com/System/override.php?id=6', true);

		hart_div.innerHTML = '<h2 class=\"ha_product\">Silver Shield</h2>\n<div class=\"ha_print_mark\">This information is provided by OnlyTheBestHerbs.com</div>\n<div class=\"ha_content\"><div class=\"ha_image\"><img src=\"http://hartonweb.com/Images/ProdPics/Silver Shield.jpg\" width=\"124\" height=\"270\"> \n      &nbsp;</div>\n<div class=\"ha_body\"><p>Bacterial resistance to commonly used antibiotics has exploded into a major global healthcare problem in recent years. Initially associated primarily with hospital-acquired infections among critically ill and immunocompromised patients, antibiotic resistance has now emerged in local communities and is no longer a problem exclusive to acute care hospitals and intensive care units. Just as alarming is the decline in research and development of new antibiotics to address the growing threat of resistant microbes.<span class=\"bodyref\">1-6</span>\n    <p>In light of this current dilemma, silver, an age-old remedy, is experiencing renewed interest among some scientists, due to its extraordinary antibacterial properties and long history of use to fight infections, control food spoilage and purify drinking water. According to the U.S. Environmental Protection Agency (EPA), silver compounds have been employed for medical purposes for centuries. In the 19th and early 20th centuries, a silver compound known as silver salvarsan (or silver arsphenamine) was used to treat syphilis (a sexually-transmitted disease) and silver nitrate drops were used in newborns\' eyes to prevent blindness caused by bacterial infections passed from mother to child during birth. In the last few decades, silver has been introduced into the production of antimicrobial coatings and products, water purification, dietary supplements, and in modern medical applications such as special stents, catheters, wound dressings, bone prostheses, cardiac devices and surgical appliances. Today, silver compounds are widely used as effective antimicrobial agents to combat pathogens (disease-causing organisms), including bacteria, viruses and eukaryotic microorganisms such as fungi, in both the clinical setting and for public health hygiene. Even the Russian Space Agency uses silver to purify drinking water for the Mir space station and the Russian portion of the International Space Station. Furthermore, based on current research, true bacterial resistance to silver is rare, making silver a viable alternative to antibiotics and disinfectants.<span class=\"bodyref\">7-19</span></p>\n    <p>Research into the use of silver for medical and other purposes has led to the development of silver nanoparticles&mdash;microscopic-sized silver particles that are less than 100 nanometers (a billionth of a meter) in diameter. These nanoparticles of silver have exhibited strong antibacterial activity and have been shown to be non-toxic and virtually free of adverse effects. Silver nanoparticles are already being used in the treatment of burns and wounds, while new breakthroughs in biotechnology have enabled silver nanoparticles to be incorporated into fabrics for clinical use to reduce the risk of nosocomial (hospital-acquired) infections and for improved personal hygiene. In addition, new research has confirmed the effectiveness of silver nanoparticles against superficial fungal infections caused by dermatophytes&mdash;parasitic fungi that infect the skin. Experimental data also suggest that silver nanoparticles could be employed to treat immunologic and inflammatory diseases. Furthermore, both in vitro and animal studies have confirmed that silver nanoparticles do not disrupt or inhibit beneficial intestinal microflora.<span class=\"bodyref\">2,7,10-12,19-25</span></p>\n    <p>Results from recent studies have confirmed the antibacterial activity of silver nanoparticles, even against proven resistant strains, as well as their potential as a broad-spectrum antiviral agent. In addition, silver nanoparticles have been shown to produce synergistic and additive effects when used in combination with traditional antibiotics. For example, the antibacterial activities of penicillin G, amoxicillin, erythromycin, clindamycin, and vancomycin were all enhanced in the presence of silver nanoparticles against both <span class=\"bodybacterianame\">Escherichia coli</span> and <span class=\"bodybacterianame\">Staphylococcus aureus</span> in in vitro tests&mdash;<span class=\"bodybacterianame\">Escherichia coli</span> can cause infections of the urinary tract, gallbladder and abdominal cavity, septicemia (blood poisoning), infantile gastroenteritis (inflammation of the stomach and intestines), &ldquo;tourist diarrhea&rdquo; and hemorrhagic (bleeding) diarrhea), while <span class=\"bodybacterianame\">Staphylococcus aureus</span> infections can range from mild skin infections to severe and potentially fatal illnesses. Since antibiotic-resistant infections are a frequent occurrence that often results in therapeutic failure when treated with single-drug antibiotic regimens, some researchers have suggested the use of silver in combination with antibiotic therapy in order to achieve bactericidal synergism (a combined and increased effectiveness for killing bacteria).<span class=\"bodyref\">2,5,9,11,21,22,26-28</span></p>\n    <p>NSP&rsquo;s <span class=\"bodyprodname\">Silver Shield</span> represents the latest technology in metallic silver nanoparticle solutions. Silver Shield is a patented formula (U.S Patent No. 7,135,195) that has been shown in independent studies to have broad-spectrum antimicrobial activity in vitro against various pathogenic microbes, including <span class=\"bodybacterianame\">Bacillus anthracis</span> (anthrax), <span class=\"bodybacterianame\">Candida albicans</span> (oral and genital infections), <span class=\"bodybacterianame\">Mycobacteria bovis</span> &amp; <span class=\"bodybacterianame\">Mycobacteria tuberculosis</span> (tuberculosis), <span class=\"bodybacterianame\">Pseudomonas aeruginosa</span> (urinary, respiratory, skin, soft tissue, bone, joint and gastrointestinal infections, bacteremia (bacterial blood infection), and a variety of systemic infections), <span class=\"bodybacterianame\">Salmonella choleraesuis</span> (acute gastroenteritis), <span class=\"bodybacterianame\">Staphylococcus aureus</span> including methicillin-resistant strains or MRSA (illnesses ranging from minor skin infections to life-threatening diseases such as pneumonia, meningitis, osteomyelitis (bone infection), endocarditis (infection of the heart valves/heart lining), toxic shock syndrome and septicemia (blood poisoning)), <span class=\"bodybacterianame\">Trichomonas vaginalis</span> (urethritis (inflammation of the urethra) and vaginitis (inflammation of the vagina)), and even <span class=\"bodybacterianame\">Yersinia pestis</span> (bubonic plague). In addition, independent tests show that Silver Shield&rsquo;s patented formula also demonstrates antiviral properties in vitro against hepatitis B virus and human immunodeficiency virus (HIV).<span class=\"bodyref\">8</span></p>\n    <p>Among the many antimicrobial tests conducted, Silver Shield&rsquo;s patented formula was tested against methicillin-resistant <span class=\"bodybacterianame\">Staphylococcus aureus</span> or MRSA. Beginning with a concentration of 6 million MRSA bacteria per milliliter, Silver Shield&rsquo;s patented formula at a strength of only 10 ppm killed more than 91% of the bacteria in 10 minutes. After one hour, 99.5% of the MRSA bacteria had been killed, with virtually all of the bacteria destroyed in one day&mdash;fewer than 10 of the 6 million bacteria remained. The growing magnitude of MRSA infections was confirmed in the <span class=\"bodyjournalname\">Journal of the American Medical Association</span> in 2007, which reported that the Centers For Disease Control estimates that nearly 95,000 invasive MRSA infections occurred in the United States in 2005, resulting in 19,000 deaths, thus surpassing the estimated 17,000 deaths in the same year from AIDS.<span class=\"bodyref\">6,8,29</span></p>\n    <p>Human studies have also been conducted using Silver Shield&rsquo;s patented formula, both internally and externally, as an alternative to traditional antibiotics. The studies were conducted in conjunction with 3 hospitals in Ghana, West Africa, involving a variety of human ailments among patients ages 5 to 75, including abdominal pain and diarrhea, bronchitis, conjunctivitis (&ldquo;pink eye&rdquo;), external skin infections (<span class=\"bodybacterianame\">Staphylococcus</span> skin infections, septic ulcers and infected abscesses), fungal skin infections, otitis media (middle ear infections), gingivitis (inflammation of the gums), gonorrhea (a sexually-transmitted disease), malaria, pelvic inflammatory disease, pharyngitis (throat infection/inflammation), rhinitis (nasal inflammation associated with the common cold), sinusitis (sinus inflammation), tonsillitis (infection/inflammation of the tonsils), upper respiratory tract infections, urinary tract infections, and vaginal yeast (candida) infections. All patients experienced a full recovery and/or complete resolution of symptoms within 1 to 8 days (depending on condition) using only Silver Shield&rsquo;s patented formula at a strength of 10 ppm.<span class=\"bodyref\">8</span></p>\n    <p>In addition, Silver Shield&rsquo;s patented formula was tested alongside traditional antibiotics (representative of the main classes of antibiotics) to determine its effectiveness against gram-positive and gram-negative bacteria&mdash;bacteria are generally divided into either of two categories based on their cell wall structure, as determined by the Gram stain. At only 10 ppm, Silver Shield&rsquo;s patented formula was shown to exhibit an equal or broader range of antimicrobial activity than any single antibiotic tested, including tetracycline, ofloxacin, penicillin-G, cefoperazone and erythromycin. Silver Shield&rsquo;s patented formula has also been shown to have superior activity compared to other commercially available silver products.<span class=\"bodyref\">8</span></p>\n    <p>Each serving of Silver Shield contains a concentration of 18 ppm (parts-per-million) of pure silver in purified, deionized water, providing a total of 90 mcg (micrograms) of silver per serving. Note: 1 microgram is equal to 1 millionth of a gram. Silver Shield contains no binding agents, chemicals, dyes, proteins, stabilizers or other ingredients.</p>\n    <p>It is important to point out that the epidemiological history of silver (a review of the use of silver among populations throughout history and its affects and risks upon public health) has confirmed that normal use of silver in minute concentrations is non-toxic and harmless. In rare instances, a cosmetic condition called argyria&mdash;a bluish-gray discoloration of the skin caused by silver deposition in the skin&mdash;has resulted from exposure primarily to soluble silver compounds such as silver salts or silver nitrate, not metallic silver. Additionally, a few poorly documented cases of argyria have been reported in recent years from ingestion of homemade silver solutions. In one such case, a 38-year-old man developed argyria after ingesting 16 ounces of a homemade silver solution at 450 ppm daily for 10 months. [To put this in perspective, Silver Shield is a 14 ppm solution with a recommended daily dosage of 3 teaspoons, meaning the above-mentioned individual ingested a solution that was more than 32 times as concentrated as Silver Shield at more than 30 times the recommended daily dosage for Silver Shield every day for 10 months.] Again, such isolated cases of argyria are rare, especially considering that according to the EPA, data from animal studies confirm that 90-99% of ingested silver is eliminated from the body within the first 48 hours following ingestion, indicating the unlikelihood for silver to accumulate in the body when consumed in small amounts.<span class=\"bodyref\">11-13,16,19,30-38</span></p></div>\n<div class=\"ha_print_mark\">This information is provided by OnlyTheBestHerbs.com</div>\n<div class=\"ha_references\"><p class=\"ref\">References:\n  <div><span class=\"refnum\">1</span>Spellberg, B., et. al. &ldquo;The epidemic of antibiotic-resistant infections: a call to action for the medical community from the Infectious Diseases Society of America.&rdquo; <span class=\"refsource\">Clinical Infectious Diseases</span>; 2008, 46(2):155-164.</div>\n  <div><span class=\"refnum\">2</span>Shahverdi, A.R., et. al. &ldquo;Synthesis and effect of silver nanoparticles on the antibacterial activity of different antibiotics against Staphylococcus aureus and Escherichia coli.&rdquo; <span class=\"refsource\">Nanomedicine: nanotechnology, biology, and medicine</span>; 2007, 3(2):168-171.</div>\n  <div><span class=\"refnum\">3</span>S&aacute;nchez, J.S. [Resistance to antibiotics] <span class=\"refsource\">Revista Latinoamericana de Microbiolog&iacute;a</span>; 2006, 48(2):105-112.</div>\n  <div><span class=\"refnum\">4</span>Alanis, A.J. &ldquo;Resistance to antibiotics: are we in the post-antibiotic era?&rdquo; <span class=\"refsource\">Archives of Medical Research</span>; 2005, 36(6):697-705.</div>\n  <div><span class=\"refnum\">5</span>de Souza, A., et. al. &ldquo;Bactericidal activity of combinations of Silver&ndash;Water Dispersion&trade; with 19 antibiotics against seven microbial strains.&rdquo; <span class=\"refsource\">Current Science</span>; 2006, 91(7):926-929.</div>\n  <div><span class=\"refnum\">6</span>Klevens, R.M., et. al. &ldquo;Invasive methicillin-resistant Staphylococcus aureus infections in the United States.&rdquo; <span class=\"refsource\">JAMA</span>; 2007, 298(15):1763-1771.</div>\n  <div><span class=\"refnum\">7</span>Roy, R., et. al. &ldquo;The Structure Of Liquid Water; Novel Insights From Materials Research; Potential Relevance To Homeopathy.&rdquo; <span class=\"refsource\">Material Research Innovations</span>; 2005, 9(4):577-608.</div>\n  <div><span class=\"refnum\">8</span>Holladay, et. al. (2006) <span class=\"refsource\">Treatment of humans with colloidal silver composition</span>. U.S. Patent 7,135,195.</div>\n  <div><span class=\"refnum\">9</span>Silvestry-Rodriguez, N., et. al. &ldquo;Silver as a disinfectant.&rdquo; <span class=\"refsource\">Reviews of Environonmental Contamination and Toxicology</span>; 2007, 191:23-45.</div>\n  <div><span class=\"refnum\">10</span>Lansdown, A.B. &ldquo;Silver in health care: antimicrobial effects and safety in use.&rdquo; <span class=\"refsource\">Current Problems in Dermatology</span>; 2006, 33:17-34.</div>\n  <div><span class=\"refnum\">11</span>Roy, R., et. al. &ldquo;Ultradilute Ag-aquasols with extraordinary bactericidal properties: role of the system Ag&ndash;O&ndash;H2O.&rdquo; <span class=\"refsource\">Material Research Innovations</span>; 2007, 11(1):3-18.</div>\n  <div><span class=\"refnum\">12</span>Pal, S., et. al. &ldquo;Does the antibacterial activity of silver nanoparticles depend on the shape of the nanoparticle? A study of the Gram-negative bacterium Escherichia coli.&rdquo; <span class=\"refsource\">Applied and Environonmental Microbiology</span>; 2007, 73(6):1712-1720.</div>\n  <div><span class=\"refnum\">13</span>&ldquo;Silver.&rdquo; <span class=\"refsource\">U.S. Environmental Protection Agency</span>; 2008. &lt;http://www.epa.gov/iris/subst/0099.htm&gt;. Accessed January 2008.</div>\n  <div><span class=\"refnum\">14</span>&ldquo;Silver Arsphenamine.&rdquo; <span class=\"refsource\">California State Journal of Medicine</span>; 1921, 19(8):304-305.</div>\n  <div><span class=\"refnum\">15</span>&ldquo;Toxicological Profile for Silver.&rdquo; <span class=\"refsource\">Agency for Toxic Substances and Disease Registry - U.S. Public Health Service</span>; 1990. &lt;http://www.atsdr.cdc.gov/toxprofiles/tp146.pdf&gt;. Accessed December 2007.</div>\n  <div><span class=\"refnum\">16</span>Silver, S. &ldquo;Bacterial silver resistance: molecular biology and uses and misuses of silver compounds.&rdquo; <span class=\"refsource\">FEMS Microbiology Reviews</span>; 2003, 27(2-3):341-353.</div>\n  <div><span class=\"refnum\">17</span>Conrad, A.H., et. al. &ldquo;Ag+ alters cell growth, neurite extension, cardiomyocyte beating, and fertilized egg constriction.&rdquo; <span class=\"refsource\">Aviation, Space and Environmental Medicine</span>; 1999, 70(11):1096-1105.</div>\n  <div><span class=\"refnum\">18</span>Lansdown, A., Williams, A. &ldquo;Bacterial resistance to silver-based antibiotics.&rdquo; <span class=\"refsource\">Nursing Times</span>; 2007, 103(9):48-49.</div>\n  <div><span class=\"refnum\">19</span>Shin, S.H., et. al. &ldquo;The effects of nano-silver on the proliferation and cytokine expression by peripheral blood mononuclear cells.&rdquo; <span class=\"refsource\">International Immunopharmacology</span>; 2007, 7(13):1813-1818.</div>\n  <div><span class=\"refnum\">20</span>Chen, X., Schluesener, H.J. &ldquo;Nanosilver: A nanoproduct in medical application.&rdquo; <span class=\"refsource\">Toxicology Letters</span>; 2008, 176(1):1-12.</div>\n  <div><span class=\"refnum\">21</span>Kim, J.S., et. al. &ldquo;Antimicrobial effects of silver nanoparticles.&rdquo; <span class=\"refsource\">Nanomedicine: nanotechnology, biology, and medicine</span>; 2007, 3(1):95-101.</div>\n  <div><span class=\"refnum\">22</span>Sondi, I., et. al. &ldquo;Silver nanoparticles as antimicrobial agent: a case study on E. coli as a model for Gram-negative bacteria.&rdquo; <span class=\"refsource\">Journal of Colloid and Interface Science</span>; 2004, 275(1):177-182.</div>\n  <div><span class=\"refnum\">23</span>Kim, K.J. &ldquo;Antifungal effect of silver nanoparticles on dermatophytes.&rdquo; <em>Journal of Microbiology and Biotechnology</em>; 2008, 18(8):1482-1484.</div>\n  <div><span class=\"refnum\">24</span>Sawosz, E., et. al. &ldquo;Influence of hydrocolloidal silver nanoparticles on gastrointestinal microflora and morphology of enterocytes of quails.&rdquo; <span class=\"refsource\">Archives of Animal Nutrition</span>; 2007, 61(6):444-451.</div>\n  <div><span class=\"refnum\">25</span>Viridis BioPharma, Mumbai, India. (2004). [Selective inaction of ASAP on probiotics]. Unpublished raw data. </div>\n  <div><span class=\"refnum\">26</span>Rentz, E.J. &ldquo;Viral Pathogens and Severe Acute Respiratory Syndrome: Oligodynamic Ag+ for Direct Immune Intervention.&rdquo; <span class=\"refsource\">Journal of Nutritional &amp; Environmental Medicine</span>; 2003, 13(2):109-118.</div>\n  <div><span class=\"refnum\">27</span>Elechiguerra, J.L., et. al. &ldquo;Interaction of silver nanoparticles with HIV-1.&rdquo; <span class=\"refsource\">Journal of Nanobiotechnology</span>; 2005, 3:6.</div>\n  <div><span class=\"refnum\">28</span>Sun, R.W., et. al. &ldquo;Silver nanoparticles fabricated in Hepes buffer exhibit cytoprotective activities toward HIV-1 infected cells.&rdquo; <span class=\"refsource\">Chemical Communications (Cambridge)</span>; 2005, (40):5059-5061.</div>\n  <div><span class=\"refnum\">29</span>&ldquo;HIV/AIDS Statistics and Surveillance - Basic Statistics.&rdquo; <span class=\"refsource\">Centers For Disease Control and Prevention</span>; 2007. &lt;http://www.cdc.gov/hiv/topics/surveillance/basic.htm&gt;. Accessed January 2008.</div>\n  <div><span class=\"refnum\">30</span>Lansdown, A.B. &ldquo;Critical observations on the neurotoxicity of silver.&rdquo; <span class=\"refsource\">Critical Reviews in Toxicology</span>; 2007, 37(3):237-250.</div>\n  <div><span class=\"refnum\">31</span>Wadhera, A., Fung, M. &ldquo;Systemic argyria associated with ingestion of colloidal silver.&rdquo; <span class=\"refsource\">Dermatology Online Journal</span>; 2005, 11(1):12.</div>\n  <div><span class=\"refnum\">32</span>Prescott, R.J., Wells, S. &ldquo;Systemic argyria.&rdquo; <span class=\"refsource\">Journal of Clinical Pathology</span>; 1994, 47(6):556-557.</div>\n  <div><span class=\"refnum\">33</span>Jonas, L., et. al. &ldquo;Detection of silver sulfide deposits in the skin of patients with argyria after long-term use of silver-containing drugs.&rdquo; <span class=\"refsource\">Ultrastructural Pathology</span>; 2007, 31(6):379-384.</div>\n  <div><span class=\"refnum\">34</span>Walker, M., et. al. &ldquo;Silver deposition and tissue staining associated with wound dressings containing silver.&rdquo; <span class=\"refsource\">Ostomy/Wound Management</span>; 2006, 52(1):42-44, 46-50.</div>\n  <div><span class=\"refnum\">35</span>Brandt, D., et. al. &ldquo;Argyria secondary to ingestion of homemade silver solution.&rdquo; <span class=\"refsource\">Journal of the American Academy of Dermatology</span>; 2005, 53(2 Suppl 1):S105-107.</div>\n  <div><span class=\"refnum\">36</span>White, J.M., et. al. &ldquo;Severe generalized argyria secondary to ingestion of colloidal silver protein.&rdquo; Cli<span class=\"refsource\">nical and Experimental Dermatology</span>; 2003, 28(3):254-256.</div>\n  <div><span class=\"refnum\">37</span>Drake, P.L., Hazelwood, K.J. &ldquo;Exposure-related health effects of silver and silver compounds: a review.&rdquo; <span class=\"refsource\">The Annals of Occupational Hygiene</span>; 2005, 49(7):575-585.</div>\n  <div><span class=\"refnum\">38</span>&ldquo;Dangers associated with chronic ingestion of colloidal silver.&rdquo; <span class=\"refsource\">Australian Adverse Drug Reactions Bulletin</span>; 2007, 26(5). &lt;http://www.tga.gov.au/adr/aadrb/aadr0710.htm#a3&gt;. Accessed January 2008.</div>\n  </p></div>\n</div><div class=\"ha_copyright\">Copyright 1997-2010 &nbsp;&nbsp;Herb Allure, Inc.</div>\n';
	} //}}}

	function hv_boot_selection() { //{{{
		// Protect against double-boot
		if (booted.selection === true) { return; }
		booted.selection = true;

		if (booted.set_div !== true) { hv_boot_set_div(); }

		// Give browser time to render before trying to find the text inside hart_div.
		setTimeout(hv_sel_setup, 33);
	} //}}}

	function hv_boot_watermark() { //{{{
		// Protect against double-boot
		if (booted.watermark === true) { return; }
		booted.watermark = true;

		var text = '';
		var i, count=50, wm=['<p>'];

		for (i = 0; i < count; ++i) {
			wm.push(text);
		}
		wm.push('</p>');

		var ha_content_div = hv_find_by_class(hart_div, 'div', 'ha_content');

		var wm_div = document.createElement('div');
		wm_div.className = 'ha_h2o';

		wm_div.innerHTML = wm.join("\n</p><p>");

		ha_content_div.appendChild(wm_div);
	} //}}}

	function hv_boot_display() { //{{{
		if (booted.display === true) { return; }
		booted.display = true;

		hart_div.style.display = '';
	} //}}}

	// Run setup code appropriate to the template.
	hv_boot_embed();
hv_boot_watermark();
hv_boot_selection();
	//}}}
})();

