function OpenChurchSearch(element) 
{
	var ParmA = element.value;
	var MyArgs = new Array(ParmA);
	var WinSettings = "center:yes;resizable:no;dialogHeight:300px"

	var MyArgs = window.showModalDialog(
              "ChurchSearch.aspx", 
                      MyArgs, WinSettings);
	if (MyArgs != null)
	{
		element.value=MyArgs[0].toString();		
	}
}
