var CoursePrefix = "C&I";
var CourseNum = "399";
var CourseName = "Algebra Through the Grades with Technology";
var FullCourseTitle = "C&I 399: Algebra Through the Grades with Technology";

function toggleDiv(a)
{
	if (a.style.display =='')
		a.style.display = 'none';
	else
		a.style.display='';
}