function setFocus() 
{ 
	document.getElementById("txtWord").focus(); 
}

function showAdvanced()
{
	var result;
	
	document.getElementById("charitiblepurpose").style.display = "inline";
	
	document.cookie = "showAdvanced=inline";
	
	document.getElementById("showAdvanced").style.display = "none";
	document.getElementById("hideAdvanced").style.display = "inline";
}

function hideAdvanced()
{
	var result;
	
	document.getElementById("charitiblepurpose").style.display = "none";	
	
	document.cookie = "showAdvanced=none";
	
	document.getElementById("showAdvanced").style.display = "inline";
	document.getElementById("hideAdvanced").style.display = "none";
}

function getNamedCookie(name)
{
	var allCookies = document.cookie;
	
	var start = allCookies.indexOf(name + '=');
	
	if (start == -1)
		return '';
		
	var end = allCookies.indexOf(';', start);
	
	if (end == -1)
		end = allCookies.length;
		
	return allCookies.substring(start + name.length + 1, end);
}

function initAdvancedSearch()
{
	var result = getNamedCookie("showAdvanced");

	if ((result != "") && (result == "inline"))
		showAdvanced();
	else
		hideAdvanced();
}

