function goto_event(ts, dir){
	sndReq('upcoming_event.php?ajax=display_event&dir='+dir+'&ts='+ts);
}
function toggle_description(id){
	elem = document.getElementById(id);
	if(elem.style.display=="none")
		elem.style.display="block";
	else
		elem.style.display="none";
}
