function assocInfo() {
	var myTable=document.getElementById("tblCourses");
	var myCourses=myTable.getElementsByTagName("td");
	var i;
	for (i=0; i< myCourses.length; i++) {
		myCourses[i].onclick=fillInBox1;
	}
}

function fillInBox1 () {
	var myTitle=this.innerHTML;
	var myDivName=myTitle.substr(0,4) + myTitle.substr(5,4);
	//var myDivName=myCourseName.replace(/ /g,"_");
	var myDiv=document.getElementById(myDivName);
	var myContent=myDiv.innerHTML;

	var myWindow=document.getElementById("InfoWindow1");
	var myWindowTitle=document.getElementById("InfoWindow1Title");
	var myWindowContent=document.getElementById("InfoWindow1Text");
	
	
	myWindowTitle.innerHTML=myTitle;
	myWindowContent.innerHTML=myContent;
	myWindow.style.visibility="visible";
}

function closeWindow1() {
	myBoxDiv=document.getElementById("InfoWindow1");	
	myBoxDiv.style.visibility="hidden";
}
