// Copyright 2010, Bohol.ph.

function toggleSearchOptions(strField, strText, strHide)
{
	field = document.getElementById(strField);
	text = document.getElementById(strText);
	hide = document.getElementById(strHide);

	if (field.style.display == "none")
	{
		field.style.display = "inline";
		text.innerHTML = "Show Less Search Options";
		hide.style.display = "none";
	}
	else
	{
		field.style.display = "none";
		text.innerHTML = "Show More Search Options";
		hide.style.display = "inline";
	}
}

function toggleHelp(strText, strHelp)
{
	text = document.getElementById(strText);
	help = document.getElementById(strHelp);

	if (help.style.display == "none")
	{
		help.style.display = "inline";
		text.innerHTML = "Hide Help";
	}
	else
	{
		help.style.display = "none";
		text.innerHTML = "Show Help";
	}
}
