//------------------------------------------------------------------
// Common functions

// Shows/hides form elements
function displaySection(i, val)
{
	if (val == 1)
	{
    	document.getElementById(i).className = '';
	}
	if (val == 0)
	{
		document.getElementById(i).className = 'hidden';
	}
}

// Common functions
//------------------------------------------------------------------

//------------------------------------------------------------------
// Event handlers

function radSearchOption_onClick()
{
	if(document.searchForm.radSearchOption[0].checked == true)
	{
		displaySection('propertyTypeOptions',1);
		displaySection('stateOptions',0);
		displaySection('nameOptions',0);
	}
	else if(document.searchForm.radSearchOption[1].checked == true)
	{
		displaySection('propertyTypeOptions',0);
		displaySection('stateOptions',1);
		displaySection('nameOptions',0);
	}
	else if(document.searchForm.radSearchOption[2].checked == true)
	{
	    displaySection('propertyTypeOptions',0);
		displaySection('stateOptions',0);
		displaySection('nameOptions',1);
	}
	else
	{
	    displaySection('propertyTypeOptions',0);
		displaySection('stateOptions',0);
		displaySection('nameOptions',0);
	}
}

// Event handlers
//------------------------------------------------------------------
