﻿function ShowResults()
{
    //var homePage = $('home_page');
   var searchResults = $('coffee_details');
    
   var loading = new Element('label',{'html':'Finding Shops....','id':'InformationLabel'});
   loading.inject(searchResults);
   
   var _searchName = $('searchName');
   var _searchState = $('searchState');
   var _searchCity = $('searchCity');
   var _totalShops = 0;
   KupOfJoe.ListingsService.GetFilteredListings(_searchName.value, _searchCity.value, '',0,5, _totalShops, completeHandler);
   _uacct = "UA-3456939-1";
    var pageTracker = _gat._getTracker(_uacct);
   pageTracker._trackPageview('/ShopSearch');
}
function ShowAllListings()
{
    var _tabContainer = $('tab_container');
    var wrapper = _tabContainer.retrieve('wrapper');
     if(wrapper != null)
     {
        wrapper.setStyle('height','0');
        }
    var _totalShops = 0;
    KupOfJoe.ListingsService.GetFilteredListings($('TextBoxName').value, $('DropDownListCity').value, $('TextBoxZip').value,0,5, _totalShops, AllListingsCompleteHandler);
    _uacct = "UA-3456939-1";
    var pageTracker = _gat._getTracker(_uacct);
    pageTracker._trackPageview('/AllShops');
}
function showItems()
    {
        var fxSlideInResults = new Fx.Slide('searchResults', {duration: 1000}); 
        var fxSlideInControls = new Fx.Slide('right_top_container', {duration: 1000}); 
        
        fxSlideInResults.toggle();
        fxSlideInControls.toggle();
    }