// ------------------------------------------------------------------
// Course information file
//
// This file identifies course information that should only need to
// be changed once per term.


	var Terms = new Array("","Winter","Spring","Summer","Fall")
	

// ------------------------------------------------------------------
// Insert "Year, Term, and Course" information here.
//   rubric    : subject identifier, e.g., "CS"
//   courseid  : course identifier, e.g., "171"
//   term      : Should be 1, 2, 3, or 4, for "Winter","Spring","Summer","Fall"
//   year      : e.g., "2002"
//   sections  : list of section numbers, e.g., "60...72, 90-91"
//   website   : URL for course website, e.g., "http://www.mcs.drexel.edu/~mcs171/W02"
//   SundayOfWeek1, MondayOfWeek1 : hopefully self explanatory, these are the beginning
//     dates of the term (e.g., "June 16"), and are used to generate due dates 
//     throughout the term, so that for instance, a lab issued in Week 4 will be due 
//     4 weeks past the Sunday of Week 1.

	var rubric    = "CS"
	var courseid  = "164"
	var coursename = "Introduction to Computer Science"
	var term      = 4
	var year       = 2002
	var sections   = "60..69"
	var website   = "http://www.mcs.drexel.edu/~introcs/Fa02"
	
	var SundayOfWeek1 = "September 22"
	var MondayOfWeek1 = "September 23"

// ------------------------------------------------------------------
// Other variables constructed from information provided above
	
	var coursenum = rubric + " " + courseid               // e.g., "CS 171"
	var course    = coursenum + "-" + sections            // e.g., "CS 171-60...72, 90-91"
	var courseprefix = rubric.toLowerCase() + courseid    // e.g., "cs171"
