function popupWindow(url,width,height,scrollbars,winName) {
	if(arguments.length < 4) { scrollbars = 'no'; }
	if(arguments.length < 5) { winName = 'popupWin'; }
	var handle = window.open(url,winName,'toolbar=no,location=no,directories=no,status=yes,scrollbars='+scrollbars+',resizable=yes,width='+width+',height='+height);
	handle.focus();
}

function saveschoolcode(code) {
	opener.document.form1.SCHOOLCODE.value =code;
   self.close();

}
function applycourse(cn){
	opener.window.location='form.jsp?md=setcourse&COURSENUM='+cn;
   self.close();
}