<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.ubc.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Galochka</id>
	<title>UBC Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.ubc.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Galochka"/>
	<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/Special:Contributions/Galochka"/>
	<updated>2026-09-17T08:03:01Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.9</generator>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/CLF_Theme/Loop&amp;diff=414861</id>
		<title>Documentation:UBC Content Management System/CLF Theme/Loop</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/CLF_Theme/Loop&amp;diff=414861"/>
		<updated>2016-06-10T20:28:29Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* Examples of Loop Usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox CMS}}&lt;br /&gt;
&#039;&#039;&#039;[loop]&#039;&#039;&#039; is a very powerful shortcode that allows you to customize the type of content to display. With this shortcode you can do anything [http://codex.wordpress.org/Function_Reference/query_posts mentioned here]. For more information on what kind of parameters are possible in the query parameter please see: [http://codex.wordpress.org/Class_Reference/WP_Query#Parameters WP Query Parameters].&lt;br /&gt;
&lt;br /&gt;
You can place the shortcode anywhere in the site.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note: You must activate the Loop Shortcode plugin to use the shortcode&#039;&#039;&#039;&lt;br /&gt;
==Attributes==&lt;br /&gt;
* query - the query that you want to retrieve from the database see [http://codex.wordpress.org/Function_Reference/query_posts some possibilities here]. &lt;br /&gt;
* rss - the url of the feed that you want to display,&lt;br /&gt;
* view - choose one  (full, archive, list) or create your own. &lt;br /&gt;
* pagination - by default pagination is false, only works with the query and not the rss.&lt;br /&gt;
* num - used in conjunction with the rss to display a limited set of item, &lt;br /&gt;
* error - what to display if there is no results can be found&lt;br /&gt;
* author - filters posts by author name or for the current logged in user, use: author=&amp;quot;current_user&amp;quot; #&lt;br /&gt;
&lt;br /&gt;
&#039;# for current user comments, use the [user_comments] shortcode&lt;br /&gt;
&lt;br /&gt;
==Examples of Loop Usage==&lt;br /&gt;
Please find below several examples of [loop] usage. &lt;br /&gt;
&lt;br /&gt;
The following line placed in the main content area of the frontpage will display the latest 5 posts on the frontpage of the site:&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;posts_per_page=5&amp;quot; view=&amp;quot;archive&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following line placed in the main content area of the frontpage will display the latest 5 posts on the frontpage of the site, with pagination enabled to navigate to older posts:&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;posts_per_page=5&amp;quot; pagination=&amp;quot;true&amp;quot; view=&amp;quot;archive&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To combine parameters in the query, use the ampersand character (&#039;&amp;amp;&#039;). The following line displays 5 posts from the category SampleCategory:&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;posts_per_page=5&amp;amp;category_name=SampleCategory&amp;quot; view=&amp;quot;archive&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
[[File: Loop_shortcode_take2.png|thumb|centre|800px]]&lt;br /&gt;
&lt;br /&gt;
Here is how the outcome looks on the website:&lt;br /&gt;
&lt;br /&gt;
[[File: Loop_shortcode_take3.jpg|thumb|centre|800px]]&lt;br /&gt;
&lt;br /&gt;
You can use the following attributes for the &#039;&#039;view&#039;&#039; parameter:&lt;br /&gt;
*archive&lt;br /&gt;
*list&lt;br /&gt;
*full&lt;br /&gt;
&lt;br /&gt;
Below is another example of [loop] usage:&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;category_name=Conference&amp;quot;]&lt;br /&gt;
 [link_with_content]&lt;br /&gt;
 [the_excerpt] by [the_author] - Date: [last-updated]&lt;br /&gt;
 [/loop]&lt;br /&gt;
&lt;br /&gt;
[[File: Lop-shortcode1.png|thumb|centre|800px]]&lt;br /&gt;
&lt;br /&gt;
 You can use the following parameters within the &#039;&#039;[loop]&#039;&#039; shortcode:&lt;br /&gt;
 *[the_content]&lt;br /&gt;
 *[permalink]&lt;br /&gt;
 *[the_excerpt]&lt;br /&gt;
 *[the_author]&lt;br /&gt;
 *[the_title]&lt;br /&gt;
 *[the_date] (post publish date, but one date per page, see http://codex.wordpress.org/Function_Reference/the_date)&lt;br /&gt;
 *[the_time] (to display the date with multiple posts with the same date, use [the_time format=&#039;F j, Y&#039;])&lt;br /&gt;
 *[last-updated]&lt;br /&gt;
 *[the_post_thumbnail]&lt;br /&gt;
 *[categories]&lt;br /&gt;
 *[tags]&lt;br /&gt;
 *[cf field_name] (where &#039;field_name&#039; is the name of a custom field in the query. The value of the custom field will be displayed)&lt;br /&gt;
 *[link_with_content]&lt;br /&gt;
 *[[Documentation:UBC Content Management System/CLF Theme/List of currently available shortcodes]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Some parameters require the &amp;quot;More Template Tag Shortcodes&amp;quot; plugin to be activated. (e.g., the [the_content] tag).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This example pulls all posts in the category &amp;quot;Conference&amp;quot; and displays the title, permalink, author, date and excerpt and thumbnail image if available.&lt;br /&gt;
&lt;br /&gt;
[[File: Loop-shortcode2.png|thumb|centre|800px]]&lt;br /&gt;
&lt;br /&gt;
You can also sort by custom field. For example:&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;posts_per_page=5&amp;amp;category_name=newsandevents&amp;amp;meta_key=event_date&amp;amp;orderby=meta_value&amp;amp;order=asc&amp;quot; view=&amp;quot;archive&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
You can also use loop shortcode with pages.&lt;br /&gt;
&lt;br /&gt;
For example, if you wish to dynamically pull a list of pages that use custom field &#039;color&#039;, regardless of the value of that custom field, you might do it with the help of a shortcode that looks like this:&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;posts_per_page=5&amp;amp;post_type=page&amp;amp;meta_key=color&amp;quot; view=&amp;quot;list&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
To return all the posts in the February 2011, use the time parameters (see http://codex.wordpress.org/Class_Reference/WP_Query#Time_Parameters)&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;year=2011&amp;amp;monthnum=2&amp;quot; view=archive]&lt;br /&gt;
&lt;br /&gt;
To return posts with future publishing dates in similar fashion as upcoming events use this: &lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;order=ASC&amp;amp;category_name=upcoming-events&amp;amp;post_status=future,publish&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
The loop query above will show future and published posts in ascending order. If you wanted to only show future posts delete publish from post_status. &lt;br /&gt;
&lt;br /&gt;
[[Category:UBC CMS]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324514</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324514"/>
		<updated>2014-10-08T18:38:26Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* W */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324513</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324513"/>
		<updated>2014-10-08T18:38:01Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* W */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324512</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324512"/>
		<updated>2014-10-08T18:27:36Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* U */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324511</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324511"/>
		<updated>2014-10-08T18:26:01Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* U */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324510</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324510"/>
		<updated>2014-10-08T18:25:05Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* T */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324507</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324507"/>
		<updated>2014-10-08T18:04:20Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* P */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324501</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324501"/>
		<updated>2014-10-08T17:50:37Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* O */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324496</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324496"/>
		<updated>2014-10-08T17:42:11Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* O */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324495</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324495"/>
		<updated>2014-10-08T17:41:35Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* O */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324487</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324487"/>
		<updated>2014-10-08T17:28:53Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* N */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324486</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324486"/>
		<updated>2014-10-08T17:28:18Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* N */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324193</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324193"/>
		<updated>2014-10-07T23:08:49Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* M */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324192</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324192"/>
		<updated>2014-10-07T22:59:06Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* M */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324191</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324191"/>
		<updated>2014-10-07T22:43:09Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* L */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324190</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324190"/>
		<updated>2014-10-07T22:38:54Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* K */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324189</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324189"/>
		<updated>2014-10-07T22:30:32Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* I */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324187</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324187"/>
		<updated>2014-10-07T22:25:45Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* H */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324186</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324186"/>
		<updated>2014-10-07T22:24:56Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* H */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324184</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324184"/>
		<updated>2014-10-07T22:23:37Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* H */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324183</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324183"/>
		<updated>2014-10-07T22:21:34Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* H */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324182</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324182"/>
		<updated>2014-10-07T22:21:06Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* H */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324181</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324181"/>
		<updated>2014-10-07T22:19:58Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* G */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324180</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324180"/>
		<updated>2014-10-07T22:17:45Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* G */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324176</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324176"/>
		<updated>2014-10-07T21:55:43Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* F */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324174</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324174"/>
		<updated>2014-10-07T21:55:06Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* F */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324173</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324173"/>
		<updated>2014-10-07T21:54:38Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* F */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.food.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324171</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324171"/>
		<updated>2014-10-07T21:48:35Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* F */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324170</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324170"/>
		<updated>2014-10-07T21:47:48Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* E */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324169</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324169"/>
		<updated>2014-10-07T21:46:29Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* E */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324168</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324168"/>
		<updated>2014-10-07T21:36:08Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* D */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.soeh.ubc.ca/ Environmental Health, School of] (SOEH)&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324167</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324167"/>
		<updated>2014-10-07T21:25:00Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* D */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://digitaltattoo.sites.olt.ubc.ca/ Digital Tattoo]&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.soeh.ubc.ca/ Environmental Health, School of] (SOEH)&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324164</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324164"/>
		<updated>2014-10-07T21:17:56Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* C */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.landfood.ubc.ca/dairy_centre/ Dairy Education &amp;amp;amp; Research Centre]&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://digitaltattoo.sites.olt.ubc.ca/ Digital Tattoo]&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.soeh.ubc.ca/ Environmental Health, School of] (SOEH)&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324163</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324163"/>
		<updated>2014-10-07T21:17:01Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* C */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://cube.csss.cs.ubc.ca/ Computer Science Students&#039; Society] (CSSS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.landfood.ubc.ca/dairy_centre/ Dairy Education &amp;amp;amp; Research Centre]&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://digitaltattoo.sites.olt.ubc.ca/ Digital Tattoo]&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.soeh.ubc.ca/ Environmental Health, School of] (SOEH)&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324162</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324162"/>
		<updated>2014-10-07T21:12:11Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* C */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://cube.csss.cs.ubc.ca/ Computer Science Students&#039; Society] (CSSS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.cms.educ.ubc.ca/ Computing &amp;amp;amp; Media Services, Faculty of Education]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.landfood.ubc.ca/dairy_centre/ Dairy Education &amp;amp;amp; Research Centre]&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://digitaltattoo.sites.olt.ubc.ca/ Digital Tattoo]&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.soeh.ubc.ca/ Environmental Health, School of] (SOEH)&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324161</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324161"/>
		<updated>2014-10-07T21:10:10Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* C */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://complit.arts.ubc.ca/ Comparative Literature, Programme in]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://cube.csss.cs.ubc.ca/ Computer Science Students&#039; Society] (CSSS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.cms.educ.ubc.ca/ Computing &amp;amp;amp; Media Services, Faculty of Education]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.landfood.ubc.ca/dairy_centre/ Dairy Education &amp;amp;amp; Research Centre]&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://digitaltattoo.sites.olt.ubc.ca/ Digital Tattoo]&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.soeh.ubc.ca/ Environmental Health, School of] (SOEH)&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324160</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324160"/>
		<updated>2014-10-07T21:09:00Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* C */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca College of Health Disciplines]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://complit.arts.ubc.ca/ Comparative Literature, Programme in]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://cube.csss.cs.ubc.ca/ Computer Science Students&#039; Society] (CSSS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.cms.educ.ubc.ca/ Computing &amp;amp;amp; Media Services, Faculty of Education]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.landfood.ubc.ca/dairy_centre/ Dairy Education &amp;amp;amp; Research Centre]&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://digitaltattoo.sites.olt.ubc.ca/ Digital Tattoo]&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.soeh.ubc.ca/ Environmental Health, School of] (SOEH)&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324154</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324154"/>
		<updated>2014-10-07T20:59:13Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* C */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.forestry.ubc.ca/cbom/ Collaborative for Business and Operations Management] (C-BOM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca College of Health Disciplines]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://complit.arts.ubc.ca/ Comparative Literature, Programme in]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://cube.csss.cs.ubc.ca/ Computer Science Students&#039; Society] (CSSS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.cms.educ.ubc.ca/ Computing &amp;amp;amp; Media Services, Faculty of Education]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.landfood.ubc.ca/dairy_centre/ Dairy Education &amp;amp;amp; Research Centre]&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://digitaltattoo.sites.olt.ubc.ca/ Digital Tattoo]&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.soeh.ubc.ca/ Environmental Health, School of] (SOEH)&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324151</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324151"/>
		<updated>2014-10-07T20:53:01Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* C */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://groups.civil.ubc.ca/cec/index2.php Civil Engineering Club]&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.forestry.ubc.ca/cbom/ Collaborative for Business and Operations Management] (C-BOM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca College of Health Disciplines]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://complit.arts.ubc.ca/ Comparative Literature, Programme in]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://cube.csss.cs.ubc.ca/ Computer Science Students&#039; Society] (CSSS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.cms.educ.ubc.ca/ Computing &amp;amp;amp; Media Services, Faculty of Education]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.landfood.ubc.ca/dairy_centre/ Dairy Education &amp;amp;amp; Research Centre]&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://digitaltattoo.sites.olt.ubc.ca/ Digital Tattoo]&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.soeh.ubc.ca/ Environmental Health, School of] (SOEH)&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324150</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324150"/>
		<updated>2014-10-07T20:51:25Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* C */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Centre for Health and Environment Research] (CHER)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://groups.civil.ubc.ca/cec/index2.php Civil Engineering Club]&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.forestry.ubc.ca/cbom/ Collaborative for Business and Operations Management] (C-BOM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca College of Health Disciplines]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://complit.arts.ubc.ca/ Comparative Literature, Programme in]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://cube.csss.cs.ubc.ca/ Computer Science Students&#039; Society] (CSSS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.cms.educ.ubc.ca/ Computing &amp;amp;amp; Media Services, Faculty of Education]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.landfood.ubc.ca/dairy_centre/ Dairy Education &amp;amp;amp; Research Centre]&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://digitaltattoo.sites.olt.ubc.ca/ Digital Tattoo]&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.soeh.ubc.ca/ Environmental Health, School of] (SOEH)&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324147</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324147"/>
		<updated>2014-10-07T20:38:31Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* C */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://celldevelopment.ubc.ca/ Cell and Development Biology]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Centre for Health and Environment Research] (CHER)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://groups.civil.ubc.ca/cec/index2.php Civil Engineering Club]&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.forestry.ubc.ca/cbom/ Collaborative for Business and Operations Management] (C-BOM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca College of Health Disciplines]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://complit.arts.ubc.ca/ Comparative Literature, Programme in]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://cube.csss.cs.ubc.ca/ Computer Science Students&#039; Society] (CSSS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.cms.educ.ubc.ca/ Computing &amp;amp;amp; Media Services, Faculty of Education]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.landfood.ubc.ca/dairy_centre/ Dairy Education &amp;amp;amp; Research Centre]&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://digitaltattoo.sites.olt.ubc.ca/ Digital Tattoo]&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.soeh.ubc.ca/ Environmental Health, School of] (SOEH)&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324146</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324146"/>
		<updated>2014-10-07T20:35:44Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* C */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/cabsd.cfm Campus Advisory Board for Student Development] (CABSD)&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://celldevelopment.ubc.ca/ Cell and Development Biology]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Centre for Health and Environment Research] (CHER)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://groups.civil.ubc.ca/cec/index2.php Civil Engineering Club]&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.forestry.ubc.ca/cbom/ Collaborative for Business and Operations Management] (C-BOM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca College of Health Disciplines]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://complit.arts.ubc.ca/ Comparative Literature, Programme in]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://cube.csss.cs.ubc.ca/ Computer Science Students&#039; Society] (CSSS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.cms.educ.ubc.ca/ Computing &amp;amp;amp; Media Services, Faculty of Education]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.landfood.ubc.ca/dairy_centre/ Dairy Education &amp;amp;amp; Research Centre]&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://digitaltattoo.sites.olt.ubc.ca/ Digital Tattoo]&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.soeh.ubc.ca/ Environmental Health, School of] (SOEH)&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324129</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324129"/>
		<updated>2014-10-07T19:38:26Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* A */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://cafesci.lsi.ubc.ca/ Cafe Scientifique, Life Sciences Institute]&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/cabsd.cfm Campus Advisory Board for Student Development] (CABSD)&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://celldevelopment.ubc.ca/ Cell and Development Biology]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Centre for Health and Environment Research] (CHER)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://groups.civil.ubc.ca/cec/index2.php Civil Engineering Club]&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.forestry.ubc.ca/cbom/ Collaborative for Business and Operations Management] (C-BOM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca College of Health Disciplines]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://complit.arts.ubc.ca/ Comparative Literature, Programme in]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://cube.csss.cs.ubc.ca/ Computer Science Students&#039; Society] (CSSS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.cms.educ.ubc.ca/ Computing &amp;amp;amp; Media Services, Faculty of Education]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.landfood.ubc.ca/dairy_centre/ Dairy Education &amp;amp;amp; Research Centre]&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://digitaltattoo.sites.olt.ubc.ca/ Digital Tattoo]&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.soeh.ubc.ca/ Environmental Health, School of] (SOEH)&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324125</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324125"/>
		<updated>2014-10-07T19:34:43Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* A */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
* [http://www.landfood.ubc.ca/avian_research/ Avian Research Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://cafesci.lsi.ubc.ca/ Cafe Scientifique, Life Sciences Institute]&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/cabsd.cfm Campus Advisory Board for Student Development] (CABSD)&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://celldevelopment.ubc.ca/ Cell and Development Biology]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Centre for Health and Environment Research] (CHER)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://groups.civil.ubc.ca/cec/index2.php Civil Engineering Club]&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.forestry.ubc.ca/cbom/ Collaborative for Business and Operations Management] (C-BOM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca College of Health Disciplines]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://complit.arts.ubc.ca/ Comparative Literature, Programme in]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://cube.csss.cs.ubc.ca/ Computer Science Students&#039; Society] (CSSS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.cms.educ.ubc.ca/ Computing &amp;amp;amp; Media Services, Faculty of Education]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.landfood.ubc.ca/dairy_centre/ Dairy Education &amp;amp;amp; Research Centre]&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://digitaltattoo.sites.olt.ubc.ca/ Digital Tattoo]&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.soeh.ubc.ca/ Environmental Health, School of] (SOEH)&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324118</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324118"/>
		<updated>2014-10-07T19:31:34Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* A */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://advising.arts.ubc.ca Arts Advising]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
* [http://www.landfood.ubc.ca/avian_research/ Avian Research Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://cafesci.lsi.ubc.ca/ Cafe Scientifique, Life Sciences Institute]&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/cabsd.cfm Campus Advisory Board for Student Development] (CABSD)&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://celldevelopment.ubc.ca/ Cell and Development Biology]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Centre for Health and Environment Research] (CHER)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://groups.civil.ubc.ca/cec/index2.php Civil Engineering Club]&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.forestry.ubc.ca/cbom/ Collaborative for Business and Operations Management] (C-BOM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca College of Health Disciplines]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://complit.arts.ubc.ca/ Comparative Literature, Programme in]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://cube.csss.cs.ubc.ca/ Computer Science Students&#039; Society] (CSSS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.cms.educ.ubc.ca/ Computing &amp;amp;amp; Media Services, Faculty of Education]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.landfood.ubc.ca/dairy_centre/ Dairy Education &amp;amp;amp; Research Centre]&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://digitaltattoo.sites.olt.ubc.ca/ Digital Tattoo]&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.soeh.ubc.ca/ Environmental Health, School of] (SOEH)&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324113</id>
		<title>List Of UBC Websites</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=List_Of_UBC_Websites&amp;diff=324113"/>
		<updated>2014-10-07T19:30:17Z</updated>

		<summary type="html">&lt;p&gt;Galochka: /* A */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== A ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://aboriginalhealth.med.ubc.ca/ Aborigional People&#039;s Health, Department of Family Practice]&lt;br /&gt;
* [http://aboriginal.ubc.ca/ Aboriginal Portal]&lt;br /&gt;
* [http://act.elearning.ubc.ca/ Academic Continuity ToolKit]&lt;br /&gt;
* [http://www.ubc.ca/accountability/index.html Accountability at UBC]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Accounting Accounting, Division of]&lt;br /&gt;
* [http://www.ampel.ubc.ca/ Advanced Materials and Process Engineering Laboratory] (AMPEL)&lt;br /&gt;
* [http://www.cawp.ubc.ca Advanced Wood Processing, Centre for]&lt;br /&gt;
* [http://cogmob.rehab.med.ubc.ca/ Aging, Mobility, and Cognitive Neuroscience Lab]&lt;br /&gt;
* [http://www.ams.ubc.ca Alma Mater Society] (AMS)&lt;br /&gt;
* [http://www.alumni.ubc.ca/ Alumni Affairs]&lt;br /&gt;
* [http://www.anesthesia.med.ubc.ca/cfmx/anesthesia/Anesthesia/ Anaesthesia, Department of]&lt;br /&gt;
* [http://democracy.network.arts.ubc.ca/ Andean Democracy Research Network]&lt;br /&gt;
* [http://www.landfood.ubc.ca/animalwelfare/ Animal Welfare Program]&lt;br /&gt;
* [http://www.anth.ubc.ca/ Anthropology, Department of]&lt;br /&gt;
* [http://www.ethics.ubc.ca Applied Ethics, Centre for]&lt;br /&gt;
* [http://www.iam.ubc.ca Applied Mathematics, Institute of]&lt;br /&gt;
* [http://www.ares.ubc.ca/ Applied Research and Evaluation Services]&lt;br /&gt;
* [http://www.apsc.ubc.ca/ Applied Science, Faculty of]&lt;br /&gt;
* [http://www.arch.ubc.ca/ Architecture, School of]&lt;br /&gt;
* [http://www.sala.ubc.ca Architecture and Landscape Architecture, School of]&lt;br /&gt;
* [http://www.ahva.ubc.ca/ Art History, Visual Art and Theory, Department of]&lt;br /&gt;
* [http://www.arts.ubc.ca Arts, Faculty of]&lt;br /&gt;
* [http://advising.arts.ubc.ca Arts Advising]&lt;br /&gt;
* [http://wire.arts.ubc.ca/ ArtsWire]&lt;br /&gt;
* [http://ubcapro.hk/ Asia Pacific Regional Office]&lt;br /&gt;
* [http://asian.library.ubc.ca/ Asian Library]&lt;br /&gt;
* [http://www.iar.ubc.ca Asian Research, Institute of]&lt;br /&gt;
* [http://www.asia.ubc.ca/ Asian Studies, Department of]&lt;br /&gt;
* [http://aaps.ubc.ca/ Association of Administrative and Professional Staff] (AAPS)&lt;br /&gt;
* [http://arlrllf.library.ubc.ca/ Association of Research Libraries] (ARL)&lt;br /&gt;
* [http://www.gothunderbirds.ca/ Athletics] (Thunderbirds or T-Birds)&lt;br /&gt;
* [http://www.eos.ubc.ca/atsc/ Atmospheric Science]&lt;br /&gt;
* [http://www.audiospeech.ubc.ca Audiology and Speech Sciences, School of]&lt;br /&gt;
* [http://www.landfood.ubc.ca/avian_research/ Avian Research Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== B ==&lt;br /&gt;
&lt;br /&gt;
* [http://barn.lsi.ubc.ca/ Bacterial Adaption and Response Networks] (BARN)&lt;br /&gt;
* [http://www.bms.bc.ca/ Bamfield Marine Sciences Centre]&lt;br /&gt;
* [http://www.BCGEU.bc.ca/ BC Government and Services Employees Union] (BCGSEU)&lt;br /&gt;
* [http://www.bcstudies.com/ BC Studies]&lt;br /&gt;
* [http://beg.forestry.ubc.ca/ Belowground Ecosystem Group]&lt;br /&gt;
* [http://www.biochem.ubc.ca/ Biochemistry and Molecular Biology, Department of]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Biodiversity.html Biodiversity Research, Centre for]&lt;br /&gt;
* [http://www.bioinformatics.ubc.ca/ Bioinformatics Centre]&lt;br /&gt;
* [http://www.brc.ubc.ca Biomedical Research Centre]&lt;br /&gt;
* [http://www.landfood.ubc.ca/biomet/ Biometeorology and Soil Physics Group of UBC]&lt;br /&gt;
* [http://bioteach.ubc.ca/ Bioteach]&lt;br /&gt;
* [http://www.cbr.ubc.ca/ Blood Research, Centre for]&lt;br /&gt;
* [http://www.bog.ubc.ca Board of Governors]&lt;br /&gt;
* [http://www.bookstore.ubc.ca UBC Bookstore]&lt;br /&gt;
* [http://www.ubcbotanicalgarden.org/ Botanical Garden and Centre for Plant Research]&lt;br /&gt;
* [http://www.botany.ubc.ca Botany, Department of]&lt;br /&gt;
* [http://brain.rehab.med.ubc.ca/ Brain Behaviour Laboratory]&lt;br /&gt;
* [http://www.brain.ubc.ca/ Brain Research Centre]&lt;br /&gt;
* [http://www.broadcastemail.ubc.ca/ UBC Broadcast E-mail]&lt;br /&gt;
* [http://www.plantoperations.ubc.ca/ Building Operations]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Business Administration (Sauder School of Business)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== C ==&lt;br /&gt;
&lt;br /&gt;
* [http://students.ubc.ca/calendar/ Academic Calendar] (course descriptions, program information and more)&lt;br /&gt;
* [http://cafesci.lsi.ubc.ca/ Cafe Scientifique, Life Sciences Institute]&lt;br /&gt;
* [http://campout.ubc.ca/ CampOUT!]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/cabsd.cfm Campus Advisory Board for Student Development] (CABSD)&lt;br /&gt;
* [http://www.planning.ubc.ca/ Campus &amp;amp;amp; Community Planning]&lt;br /&gt;
* [http://www.security.ubc.ca Campus Security]&lt;br /&gt;
* [http://www.campusmail.ubc.ca Campus Mailing Services]&lt;br /&gt;
* [http://yip.lsi.ubc.ca/ Calvin Yip Lab]&lt;br /&gt;
* [http://www.cgdn.ca/ Canadian Genetic Diseases Network] (CGDN)&lt;br /&gt;
* [http://www.ciar.ca/ Canadian Institute for Advanced Research] (CIAR)&lt;br /&gt;
* [http://www.clip.ubc.ca/ Canadian Laboratories of Innovations in Proteolysis] (CLIP)&lt;br /&gt;
* [http://www.cupe116.com/ Canadian Union of Public Employees (CUPE) Local 116]&lt;br /&gt;
* [http://www.cupe2278.ca/ Canadian Union of Public Employees (CUPE) Local 2278] (teaching assistants and instructors)&lt;br /&gt;
* [http://www.cupe2950.ca/ Canadian Union of Public Employees (CUPE) Local 2950] (clerical &amp;amp;amp; library staff)&lt;br /&gt;
* [http://www.canwheel.ca/ Canwheel]&lt;br /&gt;
* [http://crg.lsi.ubc.ca/ Cardiovascular Research Group]&lt;br /&gt;
* [http://www.careers.ubc.ca/ Career Services]&lt;br /&gt;
* [http://www.careycentre.com/ Carey Theological College]&lt;br /&gt;
* [http://www.cecilgreenpark.ubc.ca/ Cecil Green Park]&lt;br /&gt;
* [http://celebratelearning.ubc.ca/ Celebrate Learning]&lt;br /&gt;
* [http://celebrateresearch.ubc.ca/ Celebrate Research Week]&lt;br /&gt;
* [http://www.cellbiology.ubc.ca/ Cell Biology Group]&lt;br /&gt;
* [http://celldevelopment.ubc.ca/ Cell and Development Biology]&lt;br /&gt;
* [http://www.cellphys.ubc.ca/ Cellular and Physiological Sciences, Department of]&lt;br /&gt;
* [http://www.cenes.ubc.ca/ Central Eastern Northern European Studiesermanic Studies, Department of] (CENES)&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Centre for Health and Environment Research] (CHER)&lt;br /&gt;
* [http://ctlt.ubc.ca/ Centre for Teaching Learning and Technology] (CTLT)&lt;br /&gt;
* [http://www.ceremonies.ubc.ca/ Ceremonies &amp;amp;amp; Events]&lt;br /&gt;
* [http://www.chancentre.com/ Chan Centre for the Performing Arts]&lt;br /&gt;
* [http://chaplains.students.ubc.ca/ Chaplain&#039;s Association]&lt;br /&gt;
* [http://cbd.lsi.ubc.ca/ Chemical Biology of Disease]&lt;br /&gt;
* [http://www.chml.ubc.ca/ Chemical and Biological Engineering, Department of]&lt;br /&gt;
* [http://www.chem.ubc.ca Chemistry, Department of]&lt;br /&gt;
* [http://www.childcare.ubc.ca Child Care Services]&lt;br /&gt;
* [http://www.chinalinks.ubc.ca/ China Links]&lt;br /&gt;
* [http://chung.library.ubc.ca/ Chung Collection and Reading Room]&lt;br /&gt;
* [http://cirs.conference.sustain.ubc.ca/ Centre for Interactive Research on Sustainability Conference] (CIRS)&lt;br /&gt;
* [http://groups.civil.ubc.ca/cec/index2.php Civil Engineering Club]&lt;br /&gt;
* [http://www.civil.ubc.ca/ Civil Engineering, Department of]&lt;br /&gt;
* [http://www.cnrs.ubc.ca/ Classical, Near Eastern and Religious Studies, Department of]&lt;br /&gt;
* [http://www.cerc.ubc.ca/ Clean Energy Research Centre] (CERC)&lt;br /&gt;
* [http://www.cogsys.ubc.ca/ Cognitive Systems Program]&lt;br /&gt;
* [http://www.forestry.ubc.ca/cbom/ Collaborative for Business and Operations Management] (C-BOM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca College of Health Disciplines]&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Commerce and Business Administration, Faculty of] (Sauder School of Business)&lt;br /&gt;
* [http://www.communityengagement.ubc.ca/ Community Engagement]&lt;br /&gt;
* [http://www.scarp.ubc.ca/ Community and Regional Planning, School of]&lt;br /&gt;
* [http://csl.ubc.ca/ Community Service Learning and Community Based Research at UBC]&lt;br /&gt;
* [http://complit.arts.ubc.ca/ Comparative Literature, Programme in]&lt;br /&gt;
* [http://www.icics.ubc.ca/ Computing, Information and Cognitive Systems, Institute for] (ICICS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ Computer Science, Department of]&lt;br /&gt;
* [http://cube.csss.cs.ubc.ca/ Computer Science Students&#039; Society] (CSSS)&lt;br /&gt;
* [http://www.cs.ubc.ca/ugrad/ Computer Science Undergrad Web]&lt;br /&gt;
* [http://www.cms.educ.ubc.ca/ Computing &amp;amp;amp; Media Services, Faculty of Education]&lt;br /&gt;
* [http://www.ubcconferences.com/ Conferences and Accommodation at UBC]&lt;br /&gt;
* [http://www.okanagan.ubcconferences.com/ Conferences and Accommodation at UBC Okanagan]&lt;br /&gt;
* [http://www.cms.ubc.ca/ Content Management System at UBC]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/cppd/ Continuing Pharmacy Professional Development]&lt;br /&gt;
* [http://www.cstudies.ubc.ca/ Continuing Studies]&lt;br /&gt;
* [http://www.coop.ubc.ca/ Co-operative Education]&lt;br /&gt;
* [http://www.coop.apsc.ubc.ca Co-operative Education, Faculty of Applied Science]&lt;br /&gt;
* [http://co-op.arts.ubc.ca/ Co-operative Education, Faculty of Arts]&lt;br /&gt;
* [http://www.sciencecoop.ubc.ca/ Co-operative Education, Faculty of Science]&lt;br /&gt;
* [http://cap.arts.ubc.ca/ Co-ordinated Arts Program] (CAP)&lt;br /&gt;
* [http://www.science.ubc.ca/~csp/ Coordinated Science Program] (CSP)&lt;br /&gt;
* [http://copyright.ubc.ca/ Copyright at UBC]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Council of Senates]&lt;br /&gt;
* [http://www.students.ubc.ca/coursesreg/index.cfm/ Courses &amp;amp;amp; Registration]&lt;br /&gt;
* [http://www.ubccriticalcaremedicine.ca/ Critical Care Medicine]&lt;br /&gt;
* [http://web.arts.ubc.ca/index.php?id=10359 Critical Studies in Sexuality]&lt;br /&gt;
* [http://ccfi.educ.ubc.ca/ Cross-Faculty Inquiry in Education, Centre for] (CCFI)&lt;br /&gt;
* [http://institute.ctlt.ubc.ca/ CTLT Institute]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://edcp.educ.ubc.ca/ Curriculum &amp;amp; Pedagogy, Department of (EDCP)]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== D ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.landfood.ubc.ca/dairy_centre/ Dairy Education &amp;amp;amp; Research Centre]&lt;br /&gt;
* [http://data.library.ubc.ca/ Data Library]&lt;br /&gt;
* [http://www.democracy.arts.ubc.ca/ Study of Democratic Institutions, Centre for]&lt;br /&gt;
* [http://www.dentistry.ubc.ca Dentistry, Faculty of]&lt;br /&gt;
* [http://www.derm.ubc.ca/ Dermatology, Department of]&lt;br /&gt;
* [http://design.engineering.ubc.ca/ Design Engineering]&lt;br /&gt;
* [http://www.supporting.ubc.ca/ Development Office]&lt;br /&gt;
* [http://diabetes.ubc.ca/ Diabetes Research Group, Life Sciences Institute]&lt;br /&gt;
* [http://www.digitalchannels.ubc.ca/ Digital Channels Project]&lt;br /&gt;
* [http://diginit.library.ubc.ca/ Digital Initiatives] (UBC Library)&lt;br /&gt;
* [http://digitaltattoo.sites.olt.ubc.ca/ Digital Tattoo]&lt;br /&gt;
* [http://ctlt.ubc.ca/distance-learning/ Centre for Teaching, Learning, and Technology] (Distance Learning)&lt;br /&gt;
* [http://distancelearning.ubc.ca/ Distance Learning]&lt;br /&gt;
* [http://diversity.ubc.ca/ Diversity at UBC]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== E ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.elearning.ubc.ca/ e-Learning at UBC]&lt;br /&gt;
* [http://update.estrategy.ubc.ca/ e-Strategy Update]&lt;br /&gt;
* [http://www.eos.ubc.ca/ Earth and Ocean Sciences, Department of]&lt;br /&gt;
* [http://www.econ.ubc.ca/ Economics, Department of]&lt;br /&gt;
* [http://www.ecps.educ.ubc.ca/ Educational and Counselling Psychology, and Special Education, Department of]&lt;br /&gt;
* [http://edst.educ.ubc.ca/ Educational Studies, Department of] (EDCP)&lt;br /&gt;
* [http://educ.ubc.ca/ Education, Faculty of]&lt;br /&gt;
* [http://ehealth.med.ubc.ca/ eHealth Strategy Office]&lt;br /&gt;
* [http://esm.ubc.ca/ Election Stock Market]&lt;br /&gt;
* [http://www.ece.ubc.ca/ Electrical and Computer Engineering, Department of]&lt;br /&gt;
* [http://www.emergency.ubc.ca/ Emergency Procedures]&lt;br /&gt;
* [http://www.engphys.ubc.ca/ Engineering Physics Program]&lt;br /&gt;
* [http://www.ubcengineers.ca/ Engineering Undergraduate Society]&lt;br /&gt;
* [http://www.english.ubc.ca English, Department of]&lt;br /&gt;
* [http://alumni.eli.ubc.ca/ English Language Institute - Alumni]&lt;br /&gt;
* [http://social.eli.ubc.ca/ English Language Institute - Student Life]&lt;br /&gt;
* [http://www.ends.ubc.ca/ Environmental Design]&lt;br /&gt;
* [http://www.soeh.ubc.ca/ Environmental Health, School of] (SOEH)&lt;br /&gt;
* [http://www.ensc.ubc.ca/ Environmental Sciences Program]&lt;br /&gt;
* [http://www.equity.ubc.ca Equity Office]&lt;br /&gt;
* [http://www.ies.ubc.ca/ European Studies, Institute for]&lt;br /&gt;
* [http://evc.sauder.ubc.ca/ Entrepreneurship and Venture Capital Research Centre (W. Maurice Young)] (EVC)&lt;br /&gt;
* [http://www.events.ubc.ca/ Events]&lt;br /&gt;
* [http://www.bcu.ubc.ca:80/~otto/Evolution.html Evolutionary Biology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Executive_Education Executive Education]&lt;br /&gt;
* [http://www.medicine.ubc.ca/experimental-medicine/index.shtml Experimental Medicine, Division of ]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca External, Legal and Community Relations]&lt;br /&gt;
* [http://eplt.educ.ubc.ca External Programs &amp;amp;amp; Learning Technologies, Fac. of Education]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== F ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.herro.ubc.ca/facilitysearch.aspx Facilities and Research Equipment Database] (FRED)&lt;br /&gt;
* [http://www.facultyassoc.ubc.ca/ Faculty Association]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/ Faculty Relations]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ubcfarm/ UBC Farm]&lt;br /&gt;
* [http://www.fibrelab.ubc.ca/ Fibre Lab]&lt;br /&gt;
* [http://membrane.civil.ubc.ca/ Filtration Technology Group]&lt;br /&gt;
* [http://finance.sauder.ubc.ca/ Finance, Division of]&lt;br /&gt;
* [http://www.finance.ubc.ca/ Financial Services]&lt;br /&gt;
* [http://www.longhouse.ubc.ca First Nations House of Learning]&lt;br /&gt;
* [http://www.fisheries.ubc.ca/ Fisheries Centre]&lt;br /&gt;
* [http://www.focusonpeople.ubc.ca/ Focus on People: Workplace Practices at UBC]&lt;br /&gt;
* [http://www.landfood.ubc.ca/fre/ Food and Resource Economics Group]&lt;br /&gt;
* [http://www.foodserv.ubc.ca Food Services]&lt;br /&gt;
* [http://www.forestry.ubc.ca/dept/frm/ Forest Resources Management, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca/Default.aspx?tabid=113 Forest Sciences, Department of]&lt;br /&gt;
* [http://www.forestry.ubc.ca Forestry, Faculty of]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/greek/ Fraternities and Sororities]&lt;br /&gt;
* [http://www.fhis.ubc.ca/ French, Hispanic, &amp;amp;amp; Italian Studies, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== G ==&lt;br /&gt;
&lt;br /&gt;
* [http://gage.housing.ubc.ca Gage Residence Life]&lt;br /&gt;
* [http://www.geeringup.apsc.ubc.ca/ GEERing Up! UBC Engineering &amp;amp;amp; Science for Kids]&lt;br /&gt;
* [http://www.library.ubc.ca/GIM/ General Internal Medicine, Division of]&lt;br /&gt;
* [http://www.genetics.ubc.ca Genetics Graduate Program]&lt;br /&gt;
* [http://www.geog.ubc.ca/ Geography, Department of]&lt;br /&gt;
* [http://www.eos.ubc.ca/public/proginfo/undergraduate/appsci.html Geological Engineering Program]&lt;br /&gt;
* [http://giving.med.ubc.ca/ Giving, Faculty of Medicine]&lt;br /&gt;
* [http://healthsocialaccountability.org/ Global Consensus for Social Accountability of Medical Schools]&lt;br /&gt;
* [http://www.ghrp.ubc.ca/ Global Health Research Program] (GHRP)&lt;br /&gt;
* [http://www.landfood.ubc.ca/student beyond/global-opportunities Global Resource Systems Program]&lt;br /&gt;
* [http://csgb.ubc.ca/ Government and Business, Centre for the Study of] (CSGB)&lt;br /&gt;
* [http://www.governmentrelations.ubc.ca/ Government Relations]&lt;br /&gt;
* [http://gss.ubc.ca/wpmu/resources/graduate-handbook/#gradmag Graduate, The]&lt;br /&gt;
* [http://orientation.grad.ubc.ca/ Graduate Student Orientation]&lt;br /&gt;
* [http://www.gss.ubc.ca/ Graduate Student Society]&lt;br /&gt;
* [http://www.grad.ubc.ca/ Graduate Studies, Faculty of]&lt;br /&gt;
* [http://greatreads.library.ubc.ca/ Great Reads Collection, UBC Library]&lt;br /&gt;
* [http://www.greencollege.ubc.ca/ Green College]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== H ==&lt;br /&gt;
&lt;br /&gt;
* [http://www3.botany.ubc.ca/haughn/ Haughn Lab, Department of Botany ]&lt;br /&gt;
* [http://sustain.ubc.ca/centre-health-and-environmental-research-0 Health and Environment Research, Centre for] (CHER)&lt;br /&gt;
* [http://www.chcm.ubc.ca/ Health Care Management, Centre for] (CHCM)&lt;br /&gt;
* [http://www.health-disciplines.ubc.ca Health Disciplines, College of ]&lt;br /&gt;
* [http://www.herro.ubc.ca/ Health Research Resource Office] (HeRRO)&lt;br /&gt;
* [http://www.hse.ubc.ca/ Health, Safety and Environment, Department of]&lt;br /&gt;
* [http://www.chspr.ubc.ca Health Services and Policy Research, Centre for]&lt;br /&gt;
* [http://www.cshc.ubc.ca/ Historical Consciousness, Centre for the Study of]&lt;br /&gt;
* [http://www.history.ubc.ca/ History, Department of]&lt;br /&gt;
* [http://www.ubchockeyschool.com/ Hockey School]&lt;br /&gt;
* [http://www.housing.ubc.ca/ Housing &amp;amp;amp; Conferences]&lt;br /&gt;
* [http://www.ams.ubc.ca/Clubs/humanist/ Humanists&#039; Society]&lt;br /&gt;
* [http://humanities101.arts.ubc.ca/ Humanities 101 (Downtown Eastside Community Program and Outreach)]&lt;br /&gt;
* [http://hss.library.ubc.ca/ Humanities &amp;amp;amp; Social Sciences at Koerner Library]&lt;br /&gt;
* [http://www.earlylearning.ubc.ca/ Human Early Learning Partnership]&lt;br /&gt;
* [http://www.hkin.educ.ubc.ca/ Human Kinetics, School of]&lt;br /&gt;
* [http://hkinstudents.ubc.ca/ Human Kinetics Student Development]&lt;br /&gt;
* [http://www.hr.ubc.ca/ Human Resources]&lt;br /&gt;
* [http://www.chs.ubc.ca/ Human Settlements, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== I ==&lt;br /&gt;
&lt;br /&gt;
* [http://ierg.forestry.ubc.ca/ Industrial Engineering Research Group, Faculty of Forestry]&lt;br /&gt;
* [http://iii.lsi.ubc.ca/ Infection, Inflammation and Immunity]&lt;br /&gt;
* [http://www.infrastructuredevelopment.ubc.ca/ Infrastructure Development]&lt;br /&gt;
* [http://www.isgp.ubc.ca/ Interdisciplinary Studies Graduate Program] (ISGP)&lt;br /&gt;
* [http://www.id.med.ubc.ca/ Infectious Diseases, Division of]&lt;br /&gt;
* [http://www.igen.ubc.ca/ Integrated Engineering Program] (IGEN)&lt;br /&gt;
* [http://www.science.ubc.ca/~isp/ Integrated Sciences Program] (ISP)&lt;br /&gt;
* [http://www.ubc.ca/academic/interdisciplinary.html Interdisciplinary Programs]&lt;br /&gt;
* [http://www.cfis.ubc.ca/ Interdisciplinary Studies, College for] (CFIS)&lt;br /&gt;
* [http://www.intaudit.ubc.ca/ Internal Audit]&lt;br /&gt;
* [http://cibs.sauder.ubc.ca/ International Business Studies, Centre for]&lt;br /&gt;
* [http://www.icord.org/ International Collaboration On Repair Discoveries] (ICORD)&lt;br /&gt;
* [http://www.ubcinternational.ubc.ca/ International Liaison Office] (ILO)&lt;br /&gt;
* [http://www.cir.ubc.ca/ International Relations, Institute of]&lt;br /&gt;
* [http://www2.arts.ubc.ca/programs/IR/ International Relations Program]&lt;br /&gt;
* [http://www.interprofessional.ubc.ca Interprofessional Continuing Education]&lt;br /&gt;
* [http://www.itservices.ubc.ca UBC Information Technology] (Information Technology Services)&lt;br /&gt;
* [http://www.careerframework.ubc.ca/ IT Career Framework]&lt;br /&gt;
* [http://www.itunes.ubc.ca/ iTunes U] (UBC Podcasts)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== J ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.journalism.ubc.ca/ Journalism, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== K ==&lt;br /&gt;
&lt;br /&gt;
* [http://kus.ubc.ca/ Kinesiology Undergraduate Society]&lt;br /&gt;
* [http://www.ku.ubc.ca/ Korea University - UBC Joint Academic Program]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== L ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.econ.ubc.ca/cleer/ Labour and Empirical Economic Research, Centre for] (CLEER)&lt;br /&gt;
* [http://www.lbs.ubc.ca/ Land &amp;amp;amp; Building Services]&lt;br /&gt;
* [http://www.landfood.ubc.ca/ Land and Food Systems, Faculty of]&lt;br /&gt;
* [http://www.larc.ubc.ca/ Landscape Architecture]&lt;br /&gt;
* [http://lled.educ.ubc.ca/ Language &amp;amp;amp; Literacy Education, Department of] (LLED)&lt;br /&gt;
* [http://www.lpi.ubc.ca Language Proficiency Index] (LPI)&lt;br /&gt;
* [http://www.languages.cstudies.ubc.ca/ Language Programs and Services]&lt;br /&gt;
* [http://las.arts.ubc.ca/ Latin American Studies]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Law_and_Business_Communications Law and Business Communications, Department of]&lt;br /&gt;
* [http://www.law.ubc.ca Law, Faculty of]&lt;br /&gt;
* [http://learningcommons.ubc.ca/ Learning Commons]&lt;br /&gt;
* [http://learnpediatrics.com/ Learn Pediatrics]&lt;br /&gt;
* [http://clp.ubc.ca/ Community Leadership Program] (CLP)&lt;br /&gt;
* [http://learningcircle.ubc.ca/ Learning Circle, Department of Family Practice]&lt;br /&gt;
* [http://www.leap.ubc.ca/ Learning Enhancement Academic Partnership] (LEAP)&lt;br /&gt;
* [http://www.learningexchange.ubc.ca/ Learning Exchange (Downtown Eastside Outreach)]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Resources/Learning_and_Technology_Services/ Learning Technology Services, Sauder School of Business]&lt;br /&gt;
* [http://www.library.ubc.ca UBC Library]&lt;br /&gt;
* [http://about.library.ubc.ca/ UBC Library About]&lt;br /&gt;
* [http://collections.library.ubc.ca/ UBC Library Collections]&lt;br /&gt;
* [http://help.library.ubc.ca/ UBC Library Help]&lt;br /&gt;
* [http://rbsc.library.ubc.ca/ UBC Library - Rare Books and Special Collections]&lt;br /&gt;
* [http://strategicplan.library.ubc.ca/ UBC Library Strategic Plan 2010-2015]&lt;br /&gt;
* [http://www.slais.ubc.ca/ Library, Archival and Information Studies, School of] (SLAIS)&lt;br /&gt;
* [http://lsi.ubc.ca/ Life Sciences Institute]&lt;br /&gt;
* [http://facilities.lsi.ubc.ca/ Life Sciences Institute Facilities]&lt;br /&gt;
* [http://grad.lsi.ubc.ca/ Life Sciences Institute Graduate Students]&lt;br /&gt;
* [http://www.linguistics.ubc.ca/ Linguistics, Department of]&lt;br /&gt;
* [http://www.geop.ubc.ca/Lithoprobe/lithopb.html LITHOPROBE]&lt;br /&gt;
* [http://www.ligi.ubc.ca/ Liu Institute for the Study of Global Issues]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== M ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cmr.ubc.ca/ Macular Research, Centre for]&lt;br /&gt;
* [http://mis.sauder.ubc.ca/ Management Information Systems, Division of]&lt;br /&gt;
* [http://marketing.sauder.ubc.ca/ Marketing, Division of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/MSc_in_Business_Administration Master of Business Administration]&lt;br /&gt;
* [http://met.ubc.ca Master of Educational Technology]&lt;br /&gt;
* [http://www.sauder.ubc.ca/mmor/ Master of Management in Operations Research]&lt;br /&gt;
* [http://www.math.ubc.ca/ Mathematics, Department of]&lt;br /&gt;
* [http://www.mech.ubc.ca/~clubmech Mechanical Engineering Club]&lt;br /&gt;
* [http://www.mech.ubc.ca/ Mechanical Engineering, Department of]&lt;br /&gt;
* [http://www.cs.ubc.ca/nest/magic/home Media and Graphics Interdisciplinary Centre] (MAGIC)&lt;br /&gt;
* [http://www.medgen.ubc.ca/ Medical Genetics, Department of]&lt;br /&gt;
* [http://cr.med.ubc.ca/ Medicine Undergraduate Curriculum Renewal, Faculty of]&lt;br /&gt;
* [http://www.mmat.ubc.ca Materials Engineering, Department of]&lt;br /&gt;
* [http://www.mediagroup.ubc.ca/ Media Group]&lt;br /&gt;
* [http://www.medicine.ubc.ca Medicine, Department of]&lt;br /&gt;
* [http://www.med.ubc.ca Medicine, Faculty of]&lt;br /&gt;
* [http://fairs.ubc.ca/ Meet a UBC Representative]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca/IMH.htm Mental Health, Institute of] (IMH)&lt;br /&gt;
* [http://www.cmpe.ubc.ca/ Metallurgical Process Engineering, Centre for] (CMPE)&lt;br /&gt;
* [http://www.michaelsmith.ubc.ca/ Michael Smith Laboratories]&lt;br /&gt;
* [http://www.cmdr.ubc.ca/ Microbial Diseases and Host Defence Research, Centre for]&lt;br /&gt;
* [http://www.microbiology.ubc.ca Microbiology and Immunology, Department of]&lt;br /&gt;
* [http://www.midwifery.ubc.ca/ Midwifery, Division of]&lt;br /&gt;
* [http://www.mdru.ubc.ca/ Mineral Deposit Research Unit] (MDRU)&lt;br /&gt;
* [http://www.mining.ubc.ca/ Mining Engineering, Keevil Institute of]&lt;br /&gt;
* [http://www.cmmt.ubc.ca/ Molecular Medicine and Therapeutics, Centre for]&lt;br /&gt;
* [http://meg.lsi.ubc.ca/ Molecular Epigenetics] (LSI)&lt;br /&gt;
* [http://www.belkin.ubc.ca/ Morris and Helen Belkin Art Gallery]&lt;br /&gt;
* [http://www.moa.ubc.ca/ Museum of Anthropology] (MOA)&lt;br /&gt;
* [http://www.music.ubc.ca/ Music, School of]&lt;br /&gt;
* [http://barber.library.ubc.ca/ Music, Art and Architecture, UBC Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== N ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.forestry.ubc.ca/Students/Undergraduate/Prospective/DegreePrograms/NRC/tabid/457/Default.aspx Natural Resources Conservation Program]&lt;br /&gt;
* [http://ngdi.ubc.ca/ Neglected Global Disease Initiative]&lt;br /&gt;
* [http://www.it.ubc.ca/accounts/interchange/ubcstudents.html Netinfo] (Bundled Web Services for Students)&lt;br /&gt;
* [http://www.neuroscience.ubc.ca/ Neuroscience Graduate Program]&lt;br /&gt;
* [http://www.nitobe.org/ Nitobe Memorial Garden]&lt;br /&gt;
* [http://nunavutsocialhistory.arts.ubc.ca/ Nunavut Social History, School of Social Work]&lt;br /&gt;
* [http://www.nursing.ubc.ca Nursing, School of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== O ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.obstgyn.ca/ Obstetrics and Gynaecology, Department of]&lt;br /&gt;
* [http://osot.ubc.ca/ Occupational Science &amp;amp;amp; Occupational Therapy, Department of]&lt;br /&gt;
* [http://msc-oeh.spph.ubc.ca/ Occupational &amp;amp;amp; Environmental Hygiene, Master of Science]&lt;br /&gt;
* [http://www.planning.ubc.ca/corebus/ocp.html Official Community Plan] (OCP)&lt;br /&gt;
* [http://www.ombudsoffice.ubc.ca/ Ombudsperson for Students, Office of the]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Operations_and_Logistics Operations and Logistics, Division of] (OPLOG)&lt;br /&gt;
* [http://coe.ubc.ca Operations Excellence, Centre for]&lt;br /&gt;
* [http://www.ophthalmology.ubc.ca/ Ophthalmology and Visual Sciences, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Faculty/Divisions/Organizational_Behaviour_and_Human_Resources Organizational Behaviour and Human Resources, Division of]&lt;br /&gt;
* [http://www.orthosurgery.ubc.ca Orthopaedic Surgery, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== P ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pims.math.ca Pacific Institute for the Mathematical Sciences] (PIMS)&lt;br /&gt;
* [http://palliativecare.med.ubc.ca/ Palliative Care]&lt;br /&gt;
* [http://www.parking.ubc.ca/ Parking and Access Control Services]&lt;br /&gt;
* [http://www.pathology.ubc.ca/ Pathology and Laboratory Medicine, Department of]&lt;br /&gt;
* [http://meetingofexperts.org/ Patient and Community Voice]&lt;br /&gt;
* [http://www.finance.ubc.ca/payroll Payroll]&lt;br /&gt;
* [http://www.pediatrics.med.ubc.ca/ Pediatrics, Department of]&lt;br /&gt;
* [http://globalhealth.pediatrics.ubc.ca/ Pediatric Residency Program]&lt;br /&gt;
* [http://peerprograms.ubc.ca/ Peer Programs]&lt;br /&gt;
* [http://sutherland.library.ubc.ca/ Peggy Sutherland, UBC Library]&lt;br /&gt;
* [http://www.hse.ubc.ca Personal Security Office]&lt;br /&gt;
* [http://arcese.forestry.ubc.ca/ Peter Arcese Lab]&lt;br /&gt;
* [http://www.pwias.ubc.ca/ Peter Wall Institute for Advanced Studies]&lt;br /&gt;
* [http://www.pharmacy.ubc.ca/ Pharmaceutical Sciences, Faculty of]&lt;br /&gt;
* [http://www.pharmacology.ubc.ca Pharmacology and Therapeutics, Department of]&lt;br /&gt;
* [http://csgb.ubc.ca/ Phelps Centre for the Study of Government and Business]&lt;br /&gt;
* [http://www.philosophy.ubc.ca/ Philosophy, Department of]&lt;br /&gt;
* [http://www.physicaltherapy.med.ubc.ca/ Physical Therapy, Department of]&lt;br /&gt;
* [http://www.physics.ubc.ca Physics and Astronomy, Department of]&lt;br /&gt;
* [http://www.pair.ubc.ca/ Planning &amp;amp;amp; Institutional Research] (PAIR)&lt;br /&gt;
* [http://www.thepoint.ubc.ca/ The Point] UBC REC&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/policies/ UBC Policies]&lt;br /&gt;
* [http://www.chet.educ.ubc.ca/ Policy Studies in Higher Education &amp;amp;amp; Training, Centre for] (CHET)&lt;br /&gt;
* [http://www.politics.ubc.ca/ Political Science, Department of]&lt;br /&gt;
* [http://www.spph.ubc.ca/ Population and Public Health, School of]&lt;br /&gt;
* [http://equity.ubc.ca/education/workshop-descriptions-upcoming-sessions/positive-space/ Positive Space, Equity Office]&lt;br /&gt;
* [http://www.hr.ubc.ca/faculty_relations/recruitmentguide/postdocs.html Postdoctoral Fellowships]&lt;br /&gt;
* [http://post-doc.lsi.ubc.ca/ UBC Postdoc Association]&lt;br /&gt;
* [http://www.president.ubc.ca/ President, Office of]&lt;br /&gt;
* [http://townhall.ubc.ca/ The President&#039;s Town Hall]&lt;br /&gt;
* [http://proftalk.ubc.ca/ UBC Prof Talk]&lt;br /&gt;
* [http://paf.engineering.ubc.ca/ Professional Activities Fund] (Faculty of Applied Science)&lt;br /&gt;
* [http://www.ubcemeriti.org/ Professors Emeriti, UBC Association of] (a division of the UBC Alumni Association)&lt;br /&gt;
* [http://promisingpractices.research.educ.ubc.ca/ Promising Practices]&lt;br /&gt;
* [http://www.ubcproperties.com/ UBC Properties Trust]&lt;br /&gt;
* [http://www.prostatecentre.com/ Prostate Research, Centre for]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Provost and Vice President Academic]&lt;br /&gt;
* [http://www.ubcpress.ca UBC Press]&lt;br /&gt;
* [http://www.psychiatry.ubc.ca Psychiatry, Department of]&lt;br /&gt;
* [http://prtc.educ.ubc.ca/ Psychoeducational Resource &amp;amp;amp; Training Centre] (PRTC)&lt;br /&gt;
* [http://www.psych.ubc.ca/ Psychology, Department of]&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca Public Affairs]&lt;br /&gt;
* [http://www.supporting.ubc.ca/2010/priority-projects/education/public-knowledge-project-open-medicine-journal Public Knowledge Project]&lt;br /&gt;
* [http://www.ppc.ubc.ca/ Pulp and Paper Centre]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Q ==&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== R ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.hse.ubc.ca Radiation Safety Office]&lt;br /&gt;
* [http://www.radiology.ubc.ca/ Radiology, Department of]&lt;br /&gt;
* [http://www.sauder.ubc.ca/Programs/Real_Estate_Division Real Estate Division]&lt;br /&gt;
* [http://really.ubc.ca/ Really?] (Sexual Assault Awareness)&lt;br /&gt;
* [http://www.rec.ubc.ca/ UBC REC] (Intramural sports, campus recreation and fitness)&lt;br /&gt;
* [http://www.regent-college.edu/ Regent College]&lt;br /&gt;
* [http://read.chcm.ubc.ca/ Research, Evidence, and Analysis for Health Care Decision-Makers] (READ)&lt;br /&gt;
* [http://www.crpd.ubc.ca/ Research on Personhood in Dementia, Centre for] (CRPD)&lt;br /&gt;
* [http://www.ors.ubc.ca/ Research Services, Office of] (ORS)&lt;br /&gt;
* [http://www.resnet.ubc.ca ResNet] (UBC residences networking/connectivity)&lt;br /&gt;
* [http://www.ires.ubc.ca/ Resources, Environment and Sustainability, Institute for] (IRES)&lt;br /&gt;
* [http://www.rickhansen.ubc.ca Rick Hansen Institute]&lt;br /&gt;
* [http://www.bcmhs.bc.ca/ Riverview Hospital]&lt;br /&gt;
* [http://robsonsquare.ubc.ca/ UBC Robson Square]&lt;br /&gt;
* [http://www.ubcropescourse.ca/ Ropes Course]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== S ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sauder.ubc.ca/ Sauder School of Business]&lt;br /&gt;
* [http://scholcomm.ubc.ca/ Scholarly Communications]&lt;br /&gt;
* [http://www.slc.educ.ubc.ca/ School Leadership Centre at UBC]&lt;br /&gt;
* [http://www.science.ubc.ca/ Science, Faculty of]&lt;br /&gt;
* [http://www.my.science.ubc.ca/ Science Student Development, Faculty of]&lt;br /&gt;
* [http://www.scienceone.ubc.ca/ Science One Program]&lt;br /&gt;
* [http://scieng.library.ubc.ca/ Science &amp;amp;amp; Engineering, UBC Library]&lt;br /&gt;
* [http://sts.arts.ubc.ca/ Science &amp;amp;amp; Technology Studies Graducate Program]&lt;br /&gt;
* [http://www.students.ubc.ca/council/ Senates, Council of]&lt;br /&gt;
* [http://www.socialwork.ubc.ca/ Social Work, School of]&lt;br /&gt;
* [http://www.soci.ubc.ca/ Sociology, Department of]&lt;br /&gt;
* [http://cpdjournalclub.med.ubc.ca/ Specialist Journal Club]&lt;br /&gt;
* [http://css.ubc.ca/ Sports and Sustainability, Centre for]&lt;br /&gt;
* [http://www.ubcsportshalloffame.com/ UBC Sports Hall of Fame]&lt;br /&gt;
* [http://www.strategicplan.ubc.ca/ UBC Strategic Plan]&lt;br /&gt;
* [http://www.stat.ubc.ca Statistics, Department of]&lt;br /&gt;
* [http://strategy.sauder.ubc.ca/ Strategy and Business Economics, Division of]&lt;br /&gt;
* [http://studentdirectedseminars.ubc.ca/ Student Directed Seminars]&lt;br /&gt;
* [http://students.ubc.ca/ Student Services]&lt;br /&gt;
* [http://students.ubc.ca/ssc/ Student Service Centre]&lt;br /&gt;
* [http://csics.educ.ubc.ca/ Study of the Internationalization of Curriculum Studies, The Centre for the] (CSICS)&lt;br /&gt;
* [http://www.supplymanagement.ubc.ca/ Supply Management] (Purchasing)&lt;br /&gt;
* [http://www.surgery.ubc.ca/ Surgery, Department of]&lt;br /&gt;
* [http://www.sustain.ubc.ca/ Sustainability Office]&lt;br /&gt;
* [http://sustain.forestry.ubc.ca/ Sustainable Forest Management Research Group]&lt;br /&gt;
* [http://teacheval.ubc.ca/ Student Evaluation of Teaching]&lt;br /&gt;
* [http://students.ubc.ca/finance Student Financial Assistance &amp;amp;amp; Awards]&lt;br /&gt;
* [http://www.involvement.ubc.ca/ Student Involvement, Centre for]&lt;br /&gt;
* [http://support.library.ubc.ca/ Support UBC Library]&lt;br /&gt;
* [http://www.systemsbiology.org/ Systems Biology, Institute for] (ISB)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== T ==&lt;br /&gt;
&lt;br /&gt;
* [http://teach.educ.ubc.ca/ Teacher Education]&lt;br /&gt;
* [http://www.cste.educ.ubc.ca/ Teacher Education, Centre for the Study of] (CSTE)&lt;br /&gt;
* [http://www.tag.ubc.ca/ Teaching and Academic Growth, Centre for] (TAG)&lt;br /&gt;
* [http://tlef.ubc.ca/ Teaching and Learning Enhancement Fund]&lt;br /&gt;
* [http://www.tec.ubc.ca Tec de Monterrey - UBC Joint Academic Program]&lt;br /&gt;
* [http://terreweb.ubc.ca/ TerreWEB]&lt;br /&gt;
* [http://www.terry.ubc.ca The Terry Project]&lt;br /&gt;
* [http://www.theatre.ubc.ca/ Theatre at UBC]&lt;br /&gt;
* [http://blogs.theatre.ubc.ca/ Theatre at UBC Blog]&lt;br /&gt;
* [http://www.tfcw.ubc.ca/ Theatre, Film, and Creative Writing, Department of]&lt;br /&gt;
* [http://axion.physics.ubc.ca Theoretical Physics]&lt;br /&gt;
* [http://thischangedmypractice.com/ This Changed My Practice]&lt;br /&gt;
* [http://thrive.ubc.ca/ Thrive]&lt;br /&gt;
* [http://www.treasury.ubc.ca Treasury]&lt;br /&gt;
* [http://www.trek.ubc.ca/ Trek (Transportation Choices)]&lt;br /&gt;
* [http://www.alumni.ubc.ca/trek/ Trek Magazine]&lt;br /&gt;
* [http://www.ams.ubc.ca/clubs/Triathlon/ Triathlon Club]&lt;br /&gt;
* [http://www.triumf.ca/ Tri-University Meson Research Facility] (TRIUMF)&lt;br /&gt;
* [http://ctbr.ubc.ca/ Tuberculosis Research, Centre for]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== U ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.itunes.ubc.ca/ UBC on iTunes U] (UBC Podcasts)&lt;br /&gt;
* [http://www.publicaffairs.ubc.ca/reports/ UBC Reports]&lt;br /&gt;
* [http://www.rits.ubc.ca/index.php UBC–Ritsumeikan Academic Exchange Program]&lt;br /&gt;
* [http://www.ubccard.ubc.ca/ UBCcard]&lt;br /&gt;
* [http://www.events.ubc.ca/ UBCevents]&lt;br /&gt;
* [http://ubyssey.ca/ The UBYSSEY]&lt;br /&gt;
* [http://www.unitedway.ubc.ca/ United Way Campaign at UBC]&lt;br /&gt;
* [http://www.universitycounsel.ubc.ca/ University Counsel, Office of the]&lt;br /&gt;
* [http://www.upass.ubc.ca/ Universal Transit Pass] (U-Pass)&lt;br /&gt;
* [http://www.uilo.ubc.ca University-Industry Liaison Office] (UILO)&lt;br /&gt;
* [http://planning.ubc.ca/utown__ubc/ University Town]&lt;br /&gt;
* [http://universitytransition.ubc.ca University Transition Program]&lt;br /&gt;
* [http://cuer.sauder.ubc.ca/ Urban Economics and Real Estate, Centre for]&lt;br /&gt;
* [http://www.urology.ubc.ca/ Urologic Sciences, Department of]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== V ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubcvault.ca/ UBC Vault]&lt;br /&gt;
* [http://www.vpacademic.ubc.ca/ Vice President Academic, Provost and ]&lt;br /&gt;
* [http://www.vpfinance.ubc.ca/ Vice-President, Finance, Resources and Operations]&lt;br /&gt;
* [http://www.vpdevelopmentalumni.ubc.ca/ Vice President Development and Alumni Engagement]&lt;br /&gt;
* [http://www.external-affairs.ubc.ca/ Vice President External, Legal and Community Relations]&lt;br /&gt;
* [http://www.research.ubc.ca/ Vice President Research and International]&lt;br /&gt;
* [http://www.vpstudents.ubc.ca/ Vice President Students]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== W ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.recycle.ubc.ca/ Waste Management Office]&lt;br /&gt;
* [http://www.maps.ubc.ca/ Wayfinding at UBC]&lt;br /&gt;
* [http://www.webcommunications.ubc.ca/ Web Communications, UBC Public Affairs]&lt;br /&gt;
* [http://clf.ubc.ca/ Web Common Look and Feel] (CLF)&lt;br /&gt;
* [http://www.cms.ubc.ca/ Web Content Management at UBC]&lt;br /&gt;
* [http://www.webct.ubc.ca/ WebCT Course Access]&lt;br /&gt;
* [http://www.hr.ubc.ca/vwc/ Welcome and Resource Centre] (Faculty and Staff)&lt;br /&gt;
* [http://wwest.mech.ubc.ca/ Westcoast Women in Engineering, Science, and Technology]&lt;br /&gt;
* [http://www.chspr.ubc.ca/graduates/wrtc Western Regional Training Centre for Health Services Research] (WRTC)&lt;br /&gt;
* [http://www.landfood.ubc.ca/wine/ Wine Research Centre]&lt;br /&gt;
* [http://www.writingcentre.ubc.ca/ Writing Centre]&lt;br /&gt;
* [http://www.women.ubc.ca/ Women&#039;s Opportunities, Programs, &amp;amp;amp; Services]&lt;br /&gt;
* [http://www.ws.arts.ubc.ca/ Women&#039;s and Gender Studies Program]&lt;br /&gt;
* [http://www.wmst.ubc.ca Women&#039;s Studies and Gender Relations, Centre for ]&lt;br /&gt;
* [http://wood.ubc.ca/ Wood Science, Department of]&lt;br /&gt;
* [http://wcilcos.library.ubc.ca/ World Confederation of Institutes and Libraries in Chinese Overseas Studies] (WCILCOS)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== X ==&lt;br /&gt;
&lt;br /&gt;
* [http://xwi7xwa.library.ubc.ca/ Xwi7xwa Library]&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Y ==&lt;br /&gt;
&lt;br /&gt;
* [https://you.ubc.ca/ youbc] (Prospective Students &amp;amp;amp; Counsellors)&lt;br /&gt;
&lt;br /&gt;
[http://www.ubc.ca/search/a_to_z.html#top to top]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Z ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.zoology.ubc.ca/ Zoology, Department of]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: UBC]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/How_to/How_do_I_customize_the_top_navigation_menu&amp;diff=164880</id>
		<title>Documentation:UBC Content Management System/How to/How do I customize the top navigation menu</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/How_to/How_do_I_customize_the_top_navigation_menu&amp;diff=164880"/>
		<updated>2012-04-19T22:43:11Z</updated>

		<summary type="html">&lt;p&gt;Galochka: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox CMS}}The top navigation menu found in the [[Documentation:UBC_Content_Management_System/CLF_Theme|UBC CLF Advanced theme]] can be adjusted in both structure and appearance.&lt;br /&gt;
&lt;br /&gt;
==Navigation Menu Structure==&lt;br /&gt;
To adjust the structure of the menu bar, first go to Dashboard -&amp;gt; Appearance -&amp;gt; Menus.&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;Menus&amp;quot; page in the dashboard allows the user to create their own customized menus. Any of these menus can be used as the top navigation menu in the &amp;quot;UBC CLF Advanced&amp;quot; theme.&lt;br /&gt;
&lt;br /&gt;
The current top navigation menu of your site is most likely called &amp;quot;TOP-NAV&amp;quot; or holds a similar name. The following image displays a custom top navigation menu - note that the selection in the &amp;quot;Theme Locations&amp;quot; section is the same as the menu&#039;s name):&lt;br /&gt;
&lt;br /&gt;
[[File:TOP-NAV_Customizaion.jpg|thumb|none|600px|(click to enlarge)]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; If your site does not have a &amp;quot;TOP-NAV&amp;quot; menu for some reason, you can create a new one by simply clicking on the &amp;quot;+&amp;quot; tab at the top of the page.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Before&#039;&#039;&#039; you make any changes to the &amp;quot;TOP-NAV&amp;quot; menu, make sure that the &amp;quot;Header Menu&amp;quot; selection under &amp;quot;Theme Locations&amp;quot; matches the name of the menu you are currently working on.&lt;br /&gt;
&lt;br /&gt;
====Adding page/post/category/post tag/custom links to menu:====&lt;br /&gt;
Simply select desired [[Documentation:UBC Content Management System/Pages and Posts|posts, pages]], categories, or post tags from each respective section&#039;s checklist and click the &amp;quot;Add to Menu&amp;quot; button (note that each of these sections has three tabs: Most Recent, View All, and Search).&lt;br /&gt;
&lt;br /&gt;
If you wish to create a menu item that links to a page that someone else has created, you can use the Custom Links section. Simply type in the website address in the URL field, write the desired menu Label and click the &amp;quot;Add to Menu&amp;quot; item.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget to &#039;&#039;&#039;Save Menu&#039;&#039;&#039; once you&#039;re done!&lt;br /&gt;
&lt;br /&gt;
====Adding a menu item linking to an external website using Custom Links field:====&lt;br /&gt;
Simply type the URL of the external site you wish to link to click to under Custom Links URL and type the the desired menu Label in the Label below and click the &amp;quot;Add to Menu&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget to &#039;&#039;&#039;Save Menu&#039;&#039;&#039; once you&#039;re done!&lt;br /&gt;
&lt;br /&gt;
====Reordering menu items:====&lt;br /&gt;
Reordering menu items is as simple as dragging and dropping each item to the desired position.&lt;br /&gt;
&lt;br /&gt;
To make an item be a sub-menu, simply place it indented below the menu item it should be a sub-menu of. Sub-menu links can also have their own sub-menu items.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget to &#039;&#039;&#039;Save Menu&#039;&#039;&#039; once you&#039;re done with all your updates!&lt;br /&gt;
&lt;br /&gt;
====Editing/removing menu items:====&lt;br /&gt;
To edit or remove a menu item, simply click on the downward arrow of the desired menu item header. Changing the Navigation Label will change the appearance of the menu item in the actual menu (this is useful for shortening long page names). The Title Attribute, on the other hand, changes the text that appears as a user hovers over the menu item. Lastly, the Remove link removes the item from the menu.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget to &#039;&#039;&#039;Save Menu&#039;&#039;&#039; once you&#039;re done with all your updates!&lt;br /&gt;
&lt;br /&gt;
==Navigation Menu Appearance==&lt;br /&gt;
To [[Documentation:UBC Content Management System/CLF Theme/How to change the way the navigation is presented|adjust the appearance]] of the top menu navigation menu, go to:&amp;lt;br /&amp;gt;&lt;br /&gt;
Dashboard -&amp;gt; Appearance -&amp;gt; Theme Options and then click on the &amp;quot;Navigation&amp;quot; tab.&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;[[Documentation:UBC Content Management System/CLF Theme/How to change the way the navigation is presented#Style|Style]]&amp;quot; section changes the main look and feel of the navigation header. You can click through each selection and look at a preview menu at the top in order to decide which style will look best for your site.&lt;br /&gt;
&lt;br /&gt;
Lastly, each of the option sections has an &#039;&#039;&#039;&amp;quot;info&amp;quot;&#039;&#039;&#039; link that describes that section&#039;s features and selections in more detail.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/CLF_Theme/Creating_Custom_Menus|Creating Custom Menus]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/CLF_Theme/Working_with_Custom_Menus|Case Study: Working with Custom Menus]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/CLF Theme/How to change the way the navigation is presented|Navigation Options]]&lt;br /&gt;
*This is another tutorial you may find helpful: [http://blogs.sitepoint.com/2010/07/06/how-to-use-the-new-custom-menu-feature-in-wordpress-3-0/ WordPress Custom Menus].&lt;br /&gt;
&lt;br /&gt;
[[Category:UBC CMS]]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/CLF_Theme/Loop&amp;diff=103305</id>
		<title>Documentation:UBC Content Management System/CLF Theme/Loop</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/CLF_Theme/Loop&amp;diff=103305"/>
		<updated>2011-07-14T21:16:58Z</updated>

		<summary type="html">&lt;p&gt;Galochka: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;[loop]&#039;&#039;&#039; is a very powerful shortcode that allows you to customize the type of content to display. With this shortcode you can do anything mentioned here http://codex.wordpress.org/Function_Reference/query_posts. for more information on what kind of parameters are possible in the query paramter look at please see: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters&lt;br /&gt;
You can place the shortcode anywhere in the site.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please find below several example of [loop] usage. &lt;br /&gt;
&lt;br /&gt;
The following line placed in the main content area of the frontpage will display the latest 5 posts on the frontpage of the site:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;[loop query=&amp;quot;posts_per_page=5&amp;quot; view=&amp;quot;archive&amp;quot;]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To combine parameters in the query, use the ampersand &amp;amp;. The following line display 5 posts from the category SampleCategory:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;[loop query=&amp;quot;posts_per_page=5&amp;amp;category_name=SampleCategory&amp;quot; view=&amp;quot;archive&amp;quot;]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File: Loop_shortcode_take2.png]]&lt;br /&gt;
&lt;br /&gt;
Here is how the outcome looks on the website:&lt;br /&gt;
&lt;br /&gt;
[[File: Loop_shortcode_take3.jpg]]&lt;br /&gt;
&lt;br /&gt;
You can use the following attributes:&lt;br /&gt;
*archive&lt;br /&gt;
*list&lt;br /&gt;
*full&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is another example of [loop] usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;category_name=Conference&amp;quot;]&lt;br /&gt;
 &amp;lt;a href=&amp;quot;[the_permalink]&amp;quot;&amp;gt;[the_title]&amp;lt;/a&amp;gt;&lt;br /&gt;
 [the_excerpt] by [the_author] - Date: [last-updated]&amp;lt;br&amp;gt;&lt;br /&gt;
 [/loop]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File: Lop-shortcode1.png]]&lt;br /&gt;
&lt;br /&gt;
 You can use the following parameters within the [loop] shortcode:&lt;br /&gt;
 *[the_content]&lt;br /&gt;
 *[the_permalink]&lt;br /&gt;
 *[the_excerpt]&lt;br /&gt;
 *[the_author]&lt;br /&gt;
 *[the_title]&lt;br /&gt;
 *[last-updated]&lt;br /&gt;
 *[the_post_thumbnail]&lt;br /&gt;
&lt;br /&gt;
This example pulls all posts in the category &amp;quot;Conference&amp;quot; and displays the title, permalink, author, date and excerpt and thumbnail image if available.&lt;br /&gt;
&lt;br /&gt;
[[File: Loop-shortcode2.png]]&lt;br /&gt;
&lt;br /&gt;
You can also sort by custom field. For example.&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;[loop query=&amp;quot;posts_per_page=5&amp;amp;category_name=newsandevents&amp;amp;meta_key=event_date&amp;amp;orderby=meta_value&amp;amp;order=asc&amp;quot; view=&amp;quot;archive&amp;quot;]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You can also use loop shortcode with pages. &lt;br /&gt;
For example, if you wish to dynamically pull a list of pages that use custom field &#039;color&#039;,regardless of the value of that custom field, you might do it with the help of a shortcode that looks like this:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;[loop query=&amp;quot;post_per_page=5&amp;amp;post_type=page&amp;amp;meta_key=color&amp;quot; view=&amp;quot;list&amp;quot;]&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/CLF_Theme/Loop&amp;diff=103304</id>
		<title>Documentation:UBC Content Management System/CLF Theme/Loop</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/CLF_Theme/Loop&amp;diff=103304"/>
		<updated>2011-07-14T21:15:57Z</updated>

		<summary type="html">&lt;p&gt;Galochka: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;[loop]&#039;&#039;&#039; is a very powerful shortcode that allows you to customize the type of content to display. With this shortcode you can do anything mentioned here http://codex.wordpress.org/Function_Reference/query_posts. for more information on what kind of parameters are possible in the query paramter look at please see: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters&lt;br /&gt;
You can place the shortcode anywhere in the site.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please find below several example of [loop] usage. &lt;br /&gt;
&lt;br /&gt;
The following line placed in the main content area of the frontpage will display the latest 5 posts on the frontpage of the site:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;[loop query=&amp;quot;posts_per_page=5&amp;quot; view=&amp;quot;archive&amp;quot;]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To combine parameters in the query, use the ampersand &amp;amp;. The following line display 5 posts from the category SampleCategory:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;[loop query=&amp;quot;posts_per_page=5&amp;amp;category_name=SampleCategory&amp;quot; view=&amp;quot;archive&amp;quot;]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File: Loop_shortcode_take2.png]]&lt;br /&gt;
&lt;br /&gt;
Here is how the outcome looks on the website:&lt;br /&gt;
&lt;br /&gt;
[[File: Loop_shortcode_take3.jpg]]&lt;br /&gt;
&lt;br /&gt;
You can use the following attributes:&lt;br /&gt;
*archive&lt;br /&gt;
*list&lt;br /&gt;
*full&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is another example of [loop] usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;category_name=Conference&amp;quot;]&lt;br /&gt;
 &amp;lt;a href=&amp;quot;[the_permalink]&amp;quot;&amp;gt;[the_title]&amp;lt;/a&amp;gt;&lt;br /&gt;
 [the_excerpt] by [the_author] - Date: [last-updated]&amp;lt;br&amp;gt;&lt;br /&gt;
 [/loop]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File: Lop-shortcode1.png]]&lt;br /&gt;
&lt;br /&gt;
 You can use the following parameters within the [loop] shortcode:&lt;br /&gt;
 *[the_content]&lt;br /&gt;
 *[the_permalink]&lt;br /&gt;
 *[the_excerpt]&lt;br /&gt;
 *[the_author]&lt;br /&gt;
 *[the_title]&lt;br /&gt;
 *[last-updated]&lt;br /&gt;
 *[the_post_thumbnail]&lt;br /&gt;
&lt;br /&gt;
This example pulls all posts in the category &amp;quot;Conference&amp;quot; and displays the title, permalink, author, date and excerpt and thumbnail image if available.&lt;br /&gt;
&lt;br /&gt;
[[File: Loop-shortcode2.png]]&lt;br /&gt;
&lt;br /&gt;
You can also sort by custom field. For example.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;[loop query=&amp;quot;posts_per_page=5&amp;amp;category_name=newsandevents&amp;amp;meta_key=event_date&amp;amp;orderby=meta_value&amp;amp;order=asc&amp;quot; view=&amp;quot;archive&amp;quot;]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You can also use loop shortcode with pages. &lt;br /&gt;
For example, if you wish to dynamically pull a list of pages that use custom field &#039;color&#039;,regardless of the value of that custom field, you might do it with the help of a shortcode that looks like this:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;[loop query=&amp;quot;post_per_page=5&amp;amp;post_type=page&amp;amp;meta_key=color&amp;quot; view=&amp;quot;list&amp;quot;]&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/CLF_Theme/Loop&amp;diff=103303</id>
		<title>Documentation:UBC Content Management System/CLF Theme/Loop</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/CLF_Theme/Loop&amp;diff=103303"/>
		<updated>2011-07-14T21:14:37Z</updated>

		<summary type="html">&lt;p&gt;Galochka: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;[loop]&#039;&#039;&#039; is a very powerful shortcode that allows you to customize the type of content to display. With this shortcode you can do anything mentioned here http://codex.wordpress.org/Function_Reference/query_posts. for more information on what kind of parameters are possible in the query paramter look at please see: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters&lt;br /&gt;
You can place the shortcode anywhere in the site.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please find below several example of [loop] usage. &lt;br /&gt;
&lt;br /&gt;
The following line placed in the main content area of the frontpage will display the latest 5 posts on the frontpage of the site:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;[loop query=&amp;quot;posts_per_page=5&amp;quot; view=&amp;quot;archive&amp;quot;]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
To combine parameters in the query, use the ampersand &amp;amp;. The following line display 5 posts from the category SampleCategory:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;[loop query=&amp;quot;posts_per_page=5&amp;amp;category_name=SampleCategory&amp;quot; view=&amp;quot;archive&amp;quot;]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File: Loop_shortcode_take2.png]]&lt;br /&gt;
&lt;br /&gt;
Here is how the outcome looks on the website:&lt;br /&gt;
&lt;br /&gt;
[[File: Loop_shortcode_take3.jpg]]&lt;br /&gt;
&lt;br /&gt;
You can use the following attributes:&lt;br /&gt;
*archive&lt;br /&gt;
*list&lt;br /&gt;
*full&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is another example of [loop] usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;category_name=Conference&amp;quot;]&lt;br /&gt;
 &amp;lt;a href=&amp;quot;[the_permalink]&amp;quot;&amp;gt;[the_title]&amp;lt;/a&amp;gt;&lt;br /&gt;
 [the_excerpt] by [the_author] - Date: [last-updated]&amp;lt;br&amp;gt;&lt;br /&gt;
 [/loop]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File: Lop-shortcode1.png]]&lt;br /&gt;
&lt;br /&gt;
 You can use the following parameters within the [loop] shortcode:&lt;br /&gt;
 *[the_content]&lt;br /&gt;
 *[the_permalink]&lt;br /&gt;
 *[the_excerpt]&lt;br /&gt;
 *[the_author]&lt;br /&gt;
 *[the_title]&lt;br /&gt;
 *[last-updated]&lt;br /&gt;
 *[the_post_thumbnail]&lt;br /&gt;
&lt;br /&gt;
This example pulls all posts in the category &amp;quot;Conference&amp;quot; and displays the title, permalink, author, date and excerpt and thumbnail image if available.&lt;br /&gt;
&lt;br /&gt;
[[File: Loop-shortcode2.png]]&lt;br /&gt;
&lt;br /&gt;
You can also sort by custom field. For example.&lt;br /&gt;
&lt;br /&gt;
[loop query=&amp;quot;posts_per_page=5&amp;amp;category_name=newsandevents&amp;amp;meta_key=event_date&amp;amp;orderby=meta_value&amp;amp;order=asc&amp;quot; view=&amp;quot;archive&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
You can also use loop shortcode with pages. &lt;br /&gt;
For example, if you wish to dynamically pull a list of pages that use custom field &#039;color&#039;,regardless of the value of that custom field, you might do it with the help of a shortcode that looks like this:&lt;br /&gt;
&lt;br /&gt;
[loop query=&amp;quot;post_per_page=5&amp;amp;post_type=page&amp;amp;meta_key=color&amp;quot; view=&amp;quot;list&amp;quot;]&lt;/div&gt;</summary>
		<author><name>Galochka</name></author>
	</entry>
</feed>