function showArea(id)

{
	a = xGetElementById('areaLink'+id);
	xDisplay('areaH'+id,'block');
	a.innerHTML = 'HIDE STOCKISTS';
	a.href = 'javascript:hideArea('+id+');';
}

function hideArea(id)

{
	a = xGetElementById('areaLink'+id);
	xDisplay('areaH'+id,'none');
	a.innerHTML = 'SHOW STOCKISTS';
	a.href = 'javascript:showArea('+id+');';
}

function stockist_submit()

{
	if (!window.localSearch) localSearch = new GlocalSearch();
	var postcode = xGetElementById('psPostcode').value;
	var country = xGetElementById('psCountry').value;
	
	localSearch.setSearchCompleteCallback(null, stockist_callback);
	localSearch.execute(postcode + ', '+country);

	return false;
}

function stockist_callback()

{
	var r = localSearch.results[0];
	
	if (r) {
		xGetElementById('fLatitude').value = r.lat;
		xGetElementById('fLongitude').value = r.lng;
	} else {
		alert('Sorry - the system could not locate the address you entered.');
		return;
	}
	
	document.forms.searchForm.submit()
}


