
function doSelectFromDB()
{	
	document.formParcel.BuildSql.value="SearchEngine"
	document.formParcel.action="PARCELS/ShowParcelsItem.asp?ind=2";
	document.formParcel.SubCategory.value="";
	document.formParcel.submit();	
}
function showItems(subCategoryID){
	document.formParcel.BuildSql.value="nothing";
	document.formParcel.SubCategory.value=subCategoryID;
	document.formParcel.action="PARCELS/ShowParcelsItem.asp?ind="+subCategoryID+"&sp=1";
	document.formParcel.submit();
}

