
function loadProduct()
{
	if(typeof window["refreshListView"] == 'function')
	{
		refreshListView(); 
	}
}

function loadTags()
{
	if(typeof window["refreshTagView"] == 'function')
	{
		refreshTagView(); 
	}
}

function initCatCount()
{
	if(typeof window["initCategoryCount"] == 'function')
	{
		initCategoryCount(false);
	}
}

function updateCartNumItems(num) {
		
	if (document.getElementById("cartItemCount")) {
		el = document.getElementById("cartItemCount");
		el.innerHTML = num;
	}
}
