 function assarray(numele) {
 	this.length = numele;
	this.num = "";
	this.title = "";
	this.desc = "";
	this.path = "";
	this.file = "";
	return(this);
 }
 
c = new Array(2) 
//All information about the course goes in the courses file in the lms directory. 
// set the c[#].num to the course number (i.e. 1450). NOTE: if the course number has a letter in it you must quote the number. Make sure the name of the course folder for the course matches the course number you used when publishing the course.
// set the c[#].title to the course title.
// set the c[#].desc to the course description. Make sure the description does not have any quotes or carriage returns. The description has to be one continuous line.
// set the c[#].path to the course path (i.e. ../courses/html_508/ or ../courses/).
// set the c[#].file to the course file (i.e. d_wmp.html or a001index.html).

//To add more than one course just copy and paste the four lines of code designated as course information
//then change the numbers in the brackets after the cs to the next number in sequence. (i.e. c[1] to c[2])
// You will also need to add 1 to the c = new Array(2) number above.

//Course Information for course # 1450
c[1] = new assarray(5);		
c[1].num = "a2610";
c[1].title = "2009 Federal Information Systems Security Awareness";
c[1].desc = "QA";
c[1].path = "../courses/";
c[1].file = "a001index.html";
//End course information