// JavaScript Document
courseChangeWin = "";
 function openWindow(type, width, height)
 {
	courseChangeWin = open(type, "", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top=50,left=50,width=" + width + ",height=" + height);
	if (courseChangeWin == null)
		alert("You will need to disable your popup blocker for this site in order to be able to view this link!");
	return false;
 }
