function searchhelp() 
{
	window.open('searchhelp.shtml','','width=400,height=350,menubar=0,resizable=1,titlebar=0,scrollbars=1');
}


function Validate()
{
	if (window.document.frmAdvancedSearch.selState.options[window.document.frmAdvancedSearch.selState.selectedIndex].value == -1)
	{
		window.alert("You must select a State");
		
		return false;
	}

	if (window.document.frmAdvancedSearch.searchby.value == "F")
	{
		if (window.document.frmAdvancedSearch.selFOP)
		{
			if (window.document.frmAdvancedSearch.selFOP.options[window.document.frmAdvancedSearch.selFOP.selectedIndex].value == -1)
			{
				window.alert("You must select a \"Field of Practice\"");
				window.document.frmAdvancedSearch.selFOP.focus();
				
				return false;
			}
		}
	}

	if (window.document.frmAdvancedSearch.selBoardCert)
	{
		if (window.document.frmAdvancedSearch.selBoardCert.options[window.document.frmAdvancedSearch.selBoardCert.selectedIndex].value == -1)
		{
			window.alert("You must select a \"Board Certification\"");
			window.document.frmAdvancedSearch.selBoardCert.focus();
			
			return false;
		}	
	}

	if (	window.document.frmAdvancedSearch.txtAreaCode.value == "" &
			window.document.frmAdvancedSearch.txtCounty.value == "" &
			window.document.frmAdvancedSearch.txtCity.value == "" &
			window.document.frmAdvancedSearch.txtPostalCode.value == "" &
			window.document.frmAdvancedSearch.txtLastName.value == "" &
			window.document.frmAdvancedSearch.txtFirstName.value == "" & 
			window.document.frmAdvancedSearch.searchby.value == "F") 
	{
		
	}
						
	return true;
}

function ClearSearch()
{
	window.document.frmAdvancedSearch.selSearchType.selectedIndex = 0;
	window.document.frmAdvancedSearch.selState.selectedIndex = 0;
	window.document.frmAdvancedSearch.txtAreaCode.value = "";
	window.document.frmAdvancedSearch.txtCounty.value = "";
	window.document.frmAdvancedSearch.txtCity.value = "";
	window.document.frmAdvancedSearch.txtPostalCode.value = "";
	window.document.frmAdvancedSearch.txtLastName.value = "";
	window.document.frmAdvancedSearch.txtFirstName.value = "";
	
	if (window.document.frmAdvancedSearch.searchby.value == "F")
	{
		window.document.frmAdvancedSearch.selFOP.selectedIndex = 0;
	}
}
