function OpenWindow(x,y){
	theWin = "width=" + x + ",height=" + y + ",toolbar=no,location=no,directories=0,status=no,menubar=no,resizable=yes,scrollbars=yes";
	window.open('','popupWin',theWin);
	return true;
}

function newWinDisp(FileName,W,H){
	NewWinWidth=W+40;
	NewWinHeight=H+40;
	tableWidth=NewWinWidth-30;
	tableHeight=NewWinHeight-30;
	newWin=window.open("","NewWindow","width="+NewWinWidth+",Height="+NewWinHeight);
	newWin.focus();
	newWin.document.open();
	newWin.document.write("<TITLE>"+FileName+"</TITLE>");
	newWin.document.write("<BODY BGCOLOR='#FFFFFF'>");
	newWin.document.write("<CENTER><TABLE BORDER=0 WIDTH="+tableWidth+" HEIGHT="+tableHeight+" CELLSPACING=0>");
	newWin.document.write("<TR><TD ALIGN=CENTER VALIGN=MIDDLE>");
	newWin.document.write("<A HREF='JavaScript:window.close();'>");
	newWin.document.write("<IMG SRC="+FileName+" WIDTH="+W+" HEIGHT="+H+" BORDER=0>");
	newWin.document.write("</A></TABLE></CENTER>");
	newWin.document.close();
}

function Jump(){
	selected = document.myForm.id_i.selectedIndex;
	url = 'instructor.cgi?id=' + document.myForm.id_i.options[selected].value;
	location.href= url;
}

