function openAppointment(id) {
	element = $("#info" + id);
	
	if(element.is(':hidden')) {
		element.show();
	} else {
		element.hide();
	}
}
