function showPopup(){
	document.getElementById("popup").className = "show";
}
		
function hidePopup() {
	document.getElementById('popup').className='hide';
}