// Navigation Popups

	function show(tmp){
		hideAll();
		document.getElementById(tmp).className = 'show';
	}
	function hide(tmp){
		document.getElementById(tmp).className = 'hide';
	}
	function hideAll(){
		document.getElementById('subSales').className = 'hide';
	}