function clicker(){
	var thediv=document.getElementById('displaybox');
	var thepop=document.getElementById('pop');
	if(thediv.style.display == "none"){
		thediv.style.display = "";
	}else{
		thediv.style.display = "none";
	}
	if(thepop.style.display == "none"){
		thepop.style.display = "";
	}else{
		thepop.style.display = "none";
	}
	return false;
}