function popUps(){
	
	var showPopTopBut = document.getElementById('voteBut');
	var topPopContainer = document.getElementById('popTop');
	
	var showPopLeftBut = document.getElementById('voteButLeft');
	var leftPopContainer = document.getElementById('popLeft');

	
	function showPopTop(){
		if (topPopContainer.style.display == 'none'){
			topPopContainer.style.display = 'inline';
		}
		else {
			topPopContainer.style.display = 'none';
		}
		return false;
	}
	

	function showPopLeft(){
		if (leftPopContainer.style.display == 'none'){
			leftPopContainer.style.display = 'inline';
		}
		else {
			leftPopContainer.style.display = 'none';
		}
		return false;
	}
	
	function hidePopTop(){
		topPopContainer.style.display = 'none';
	}

	function hidePopLeft(){
		leftPopContainer.style.display = 'none';
	}
	
	
	
	showPopTopBut.onclick = showPopTop;
	showPopTopBut.onmouseout = hidePopTop;

	
	showPopLeftBut.onclick = showPopLeft;
	showPopLeftBut.onmouseout = hidePopLeft;
		
}