function findStore(value, value2, value3)
{
	//document.getElementById('load').style.visibility="visible";
	$.post("php/storesearch.php", {partialStore:value, searchQuery:true, causeAbrv:value2, causeAID:value3},function(data)
	{
		$("#results").html(data);
	});
}

function findCause(value)
{
	//document.getElementById('load').style.visibility="visible";
	$.post("php/causesearch.php", {partialCause:value, searchQuery:true, walk:walkthrough},function(data)
	{
		$("#results").html(data);
	});
}

function loadContentCause(value2, value3)
{
	document.searchform.searchbar.focus();
	$.post("php/storesearch.php", {partialStore:"", searchQuery:false, causeAbrv:value2, causeAID:value3},function(data)
	{
		$("#results").html(data);
	});
}

function loadContentIndex()
{
	document.searchform.searchbar.focus();
	$.post("php/causesearch.php", {partialStore:"", searchQuery:false, walk:walkthrough},function(data)
	{
		$("#results").html(data);
	});
}

function recordClick(str)
{
	alert(str);
}

