	function displayShops(name,type) {
		if (type == 1 || (type == 0 && document.getElementById('shopList').style.display != 'none')) {
			displayItem('shopList',0);
			displayItem('shopsBack',0);
		}
		displayItem(name,1);
	}
	
	function displayItem(name,hideall)
	{
		var obj = document.getElementById(name);
		
		if (hideall == 1) hideAll();
		if(obj == null)
		{
			return;
		}				
		
		if(obj.style.display == "block") 
		{
			obj.style.display = "none";
		}
		else
		{
			obj.style.display = "block";
		}
		
	}
	
	function hideAll() {
		allDivs = document.getElementsByTagName('div');
		for (a=0;a<allDivs.length;a++) {
			if (allDivs[a].className == 'address') {
				allDivs[a].style.display = 'none';
			}
		}
	}