// JavaScript Document
function toggleDrawingTool(type)
{
	if(type == 'point')
	{
		dojo.byId('drawingIntro').style.display = 'none';
		dojo.byId('drawPointDiv').style.display = 'block';
		dojo.byId('drawLineDiv').style.display = 'none';
	}
	else if(type == 'line')
	{
		dojo.byId('drawingIntro').style.display = 'none';
		dojo.byId('drawPointDiv').style.display = 'none';
		dojo.byId('drawLineDiv').style.display = 'block';
		
	}
}

function toggleSearchType(type)
{
	var searchText = dojo.byId('searchTypeText');
	var searchBox = dojo.byId('quickSearchValue');
	searchBox.focus();
	searchBox.value = "";
	if(type == 'owner')
	{
		searchText.innerHTML = 'Owner Name:';
		searchType = type;
	}
	else if(type == 'parcel')
	{
		searchText.innerHTML = 'Parcel Number:';
		searchType = type;
	}
	else if(type == 'location')
	{
		searchText.innerHTML = 'Location Address:';
		searchType = type;
	}
}