﻿
function SearchText()
{
    var si = document.getElementById('SearchInput');
    if (si!= null)
    {
     document.location.href='search.aspx?query=' + si.value;
    }
}

function Expander_Hide(element, parentId) {
	element.style.visibility = "hidden";
	element.style.display = "none";
}

function Expander_Switch(elementId, parentId) {

	var element = Bd_GetElement(elementId);
	var parent = Bd_GetElement(parentId);
			
	if (element.style.visibility == "visible") 
	{
		if(parent != null)
			parent.className = "Expander_Item_Visited";
		element.style.visibility = "hidden";
		element.style.display = "none";
	}
	else 
	{
		if(parent != null)
			parent.className = "Expander_Item_VisitedOpen";
		element.style.visibility = "visible";
		element.style.display = "block";
	}
}

function Bd_GetElement(id) {
	return document.getElementById(id);
}

function openThirdParty(siteUrl)
{
	if(confirm('You are leaving the Balanced Life website and connecting to a website that is not under the control of Abbott.  Abbott is not responsibile for the contents of any such website or any further links from such website.  Abbott is providing this link only as a convenience and the inclusion of any link does not imply the endorsement by Abbott of the linked website.'))
		location.href=siteUrl;
}