function changePage(loc) 
{
	win = window.open(loc, "popupWindow","toolbar=yes,location=no,directories=0,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=0,width=580,height=350,left=50,top=50");
	win.focus();
}
 
function fetchID()
      {
	id = document.FrontPage_Form1.FacultyID.value;
	loc = "CourseRequestForm.asp?FacultyID=";
	loc += id;
	loc += "";
	a = infoWin(loc);
      }
function infoWin(loc) 
{
	win = window.open(loc, "infoWindow","toolbar=yes,location=no,directories=0,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=0,width=580,height=350");
	win.focus();
}
function showCourses()
      {
	var loc
	var id = document.showMe.FacultyID.value;
	var choice = document.showMe.showYear.selectedIndex;
	var yr = document.showMe.showYear.options[choice].value;
	loc = "showCourses.asp?FacultyID=";
	loc += id;
	loc += "&showYear=";
	loc += yr;
	loc += "";
	a = infoWin(loc);
      }