




var CourseStrings = Base.extend({

	getString: function(aKey) {
    	return this.strings[aKey];
    },
    
    strings: {
    
    	NONE: "&#10;New&#10;",
        TO_BE_REVIEWED: "&#10;To be Reviewed&#10;",
        ACCEPTED: "&#10;Completed&#10;",
        REJECTED: "&#10;Correction Needed&#10;",
    
    	$:""
    }

});

document.courseStrings = new CourseStrings();

