//Function to pop up the event description window
function show_event_desc( id ) {
	event_window = window.open( 'event-description.php?id='+id, 'Event', 'width=500,height=400,toolbar=0,resizable=0,status=0,menubar=false' );
	event_window.moveTo( (screen.width / 2) - 250, (screen.height / 2)- 250 );
}	