forked from smit1920/CMSEtech_ClassScraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathManage Classes.html
2998 lines (2807 loc) · 257 KB
/
Manage Classes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0247)https://student.msu.edu/psc/ps_89/EMPLOYEE/SA/c/SSR_STUDENT_FL.SSR_MD_SP_FL.GBL?Action=U&MD=Y&GMenu=SSR_STUDENT_FL&GComp=SSR_START_PAGE_FL&GPage=SSR_START_PAGE_FL&scname=CS_SSR_MANAGE_CLASSES_NAV&AJAXTransfer=y&ICAJAXTrf=true&ICMDListSlideout=true -->
<html class="pc chrome win psc_dir-ltr psc_mode-md psc_mdlistslideout psc_mode-slideout psc_ajaxtrf psc_form-xlarge" dir="ltr" lang="en"><!-- Copyright (c) 2000, 2021, Oracle and/or its affiliates. --><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width,user-scalable=yes,initial-scale=1.0,minimum-scale=1.0">
<script type="text/javascript" async="" src="./Manage Classes_files/analytics.js.下载"></script><script type="text/javascript" async="" src="./Manage Classes_files/js"></script><script language="JavaScript">
var totalTimeoutMilliseconds = 3600000;
var warningTimeoutMilliseconds = 3480000;
var timeOutURL = 'https://student.msu.edu/psc/ps_89/EMPLOYEE/SA/?cmd=expire';
var timeoutWarningPageURL = 'https://student.msu.edu/psc/ps_89/EMPLOYEE/SA/s/WEBLIB_TIMEOUT.PT_TIMEOUTWARNING.FieldFormula.IScript_TIMEOUTWARNING';
var sRCRequestURL = 'https://student.msu.edu/psc/ps_89/EMPLOYEE/SA/s/WEBLIB_PTRC.ISCRIPT1.FieldFormula.IScript_RC_REQUEST';
</script>
<link rel="apple-touch-icon" href="https://student.msu.edu/cs/ps/cache859/LOGO_FAVICON_6.ico">
<link rel="icon" href="https://student.msu.edu/cs/ps/cache859/LOGO_FAVICON_6.ico">
<link rel="stylesheet" type="text/css" href="./Manage Classes_files/PSSTYLEDEF_FMODE_10.css">
<title>Manage Classes</title>
<script language="JavaScript">
try {
document.domain = "msu.edu";
}
catch(err) {;}
</script>
<script language="JavaScript">
var winName='win89';
var winParent = null;
var modalID = null;
var modalZoomName = null;
var baseKey_win89 = "\x1b";
var altKey_win89 = "0J5678\xbc\xbe\xbf\xde34";
var ctrlKey_win89 = "JK";
var saveWarningKeys_win89 = "A3;A4;";
var firstFocusID = null;
var bPTDrag = false;
var sMDWrapperStyle='', sMDSide1Style='', sMDSide2Style='', sMDHeaderStyle='', sMDFooterStyle='', sPageFFStyle='';
var refererURL = 'https://student.msu.edu/psc/ps_78/EMPLOYEE/SA/c/NUI_FRAMEWORK.PT_LANDINGPAGE.GBL?&lp=SA.EMPLOYEE.MSU_PT_STUDENT_HP&lp=SA.EMPLOYEE.MSU_PT_STUDENT_HP&';
var isNewSaveWarn = true;
var bAccessibility_win89 =false;
var bFMode =true;
var bDoModal_win89 = false;
var bJSModal_win89 = false;
var bPromptPage_win89 = false;
var bTabOverTB_win89 = false;
var bTabOverPg_win89 = false;
var bTabOverNonPS_win89 = false;
var strCurrUrl='https://student.msu.edu/psc/ps_89/EMPLOYEE/SA/c/SSR_STUDENT_FL.SSR_MD_SP_FL.GBL?Action=U&MD=Y&GMenu=SSR_STUDENT_FL&GComp=SSR_START_PAGE_FL&GPage=SSR_START_PAGE_FL&scname=CS_SSR_MANAGE_CLASSES_NAV&AJAXTransfer=y&ICAJAXTrf=true&ICMDListSlideout=true&PAGE=SSR_MD_TGT_PAGE_FL';
var strReqURL='';
var bIncInNavigation='T';
var szPinCrefID='CS_SSR_MD_SP_FL_GBL';
var szPinCrefReg='T';
var szPinCrefLabel='Manage Classes MD';
var szCrefID='CS_SSR_MD_SP_FL_GBL';
var szCrefReged='T';
var szCrefVisible='F';
var szCrefLabel='Manage Classes MD';
var szCrefUsageType='TARG';
var localNodes = ['PSFT_CS', 'SA'];
var remoteUrls = [];
bGenDomInfo = false;
var szCalendarType = 'G';
var bMenuSrchPage = false;
var bGuidedAG = false;
var bWSRP=0;var szMenuSrchText = "-999999-";
var disablePNSubscriptions=0;var modalBackUrl = '/cs/ps/cache859/PT_NUI_BACK_SMALL_IMG_1.svg';
var modalBackAlt = 'Back';
var sPopupTitle = 'Popup window';
var modalCloseUrl = '/cs/ps/cache859/PT_MODAL_CLOSE_NUI_1.svg';
var modalCloseAlt = 'Close';
var modalResizeUrl= '/cs/ps/cache859/PT_RESIZE_IMG_1.gif';
var modalResizeAlt = 'Drag to resize';
var modalMoveAlt = 'Drag to move';
</script>
<script language="JavaScript">
bPTActEnterKey = false;
</script>
<script language="JavaScript">
var scrollFieldListOld = [['win89hdrdivPT_ACTION_MENUgrp',1, 0, 0, 0,0, 1,0,0, 1]];var scrollFieldList = [['win89hdrdivPT_ACTION_MENUgrp',1, 0, 0, 0,0, 1,0,0, 1]];
</script>
<script language="JavaScript">
var agGroupletList = [];var groupletList = [];agGroupletList = [['win89sidegroupletSCC_LO_FL_WRK_SCC_GROUP_BOX_5','5','https://student.msu.edu/psc/ps_newwin/EMPLOYEE/SA/c/SSR_STUDENT_FL.SSR_START_PAGE_FL.GBL?Page=SSR_START_PAGE_FL&Action=U&ICMDListSlideout=true&MD=Y&scname=CS_SSR_MANAGE_CLASSES_NAV&ICAJAXTrf=true&AJAXTransfer=y&ICDoModal=1&ICGrouplet=1&ICLoc=1','','0','bGrouplet@1;','','0','','','','0','NOTFOUND']];
</script>
<script language="JavaScript">
try {
document.domain = "msu.edu";
}
catch(err) {;}
</script>
<script language="JavaScript" type="text/javascript" src="./Manage Classes_files/PT_COMMON_FMODE_MIN_130383.js.下载">
</script>
<script language="JavaScript" type="text/javascript" src="./Manage Classes_files/PT_AJAX_NET_MIN_129677.js.下载">
</script>
<script language="JavaScript" type="text/javascript" src="./Manage Classes_files/PT_SAVEWARNINGSCRIPT_MIN_129677.js.下载">
</script>
<script language="JavaScript" type="text/javascript" src="./Manage Classes_files/PT_PAGESCRIPT_win89_MIN_129677.js.下载">
</script>
<script language="JavaScript" type="text/javascript" src="./Manage Classes_files/PT_EDITSCRIPT_win89_MIN_129677.js.下载">
</script>
<script language="JavaScript" type="text/javascript" src="./Manage Classes_files/PT_PAGESCRIPT_FMODE_MIN_129677.js.下载">
</script>
<script language="JavaScript" type="text/javascript" src="./Manage Classes_files/PT_TYPEAHEAD_win89_MIN_1.js.下载">
</script>
<script language="JavaScript">
DoUrlNUI();
var nResubmit=0;
var nLastAction=0;
var loader=null;
if (typeof(bCleanHtml) == 'undefined')
var bCleanHtml = false;
setupTimeout2();
var postUrl_win89='https://student.msu.edu/psc/ps_89/EMPLOYEE/SA/c/SSR_STUDENT_FL.SSR_MD_SP_FL.GBL';
function aAction_win89(form, id, params, bAjax, bPrompt, sAjaxTrfUrl, bWarning, sScriptAfter, nTrfURLType)
{
setupTimeout2();
if ((id != '#ICSave'))
processing_win89(1,3000);
aAction0_win89(form, id, params, bAjax, bPrompt, sAjaxTrfUrl, bWarning, sScriptAfter, nTrfURLType);
}
function submitAction_win89(form, id, event, sAjaxTrfUrl, bWarning, sScriptAfter, nTrfURLType)
{
setupTimeout2();
if (!ptCommonObj2.isICQryDownload(form, id))
{ processing_win89(1,3000); }
preSubmitProcess_win89(form, id);
var spellcheckpos = id.indexOf('$spellcheck');
if ((spellcheckpos != -1) && (id.indexOf('#KEYA5') != -1))
form.ICAction.value = id.substring(0,spellcheckpos);
else
form.ICAction.value=id;
var actionName = form.ICAction.value;
form.ICXPos.value=ptCommonObj2.getScrollX();
form.ICYPos.value=ptCommonObj2.getScrollY();
bcUpdater.storeBcDomData();
if ((typeof(bAutoSave) != 'undefined') && bAutoSave)
form.ICAutoSave.value = '1';
if (!ptCommonObj2.isAJAXReq(form, id) && !ptCommonObj2.isPromptReq(id)){
if (nLastAction == 1 && nResubmit > 0) return;
form.ICResubmit.value=nResubmit;
form.submit();
if (!ptCommonObj2.isICQryDownload(form, id))
nResubmit++;
}
else if (ptCommonObj2.isPromptReq(id))
pAction_win89(form, id, arguments[2]);
else
aAction_win89(form, actionName, null, true, false, sAjaxTrfUrl, bWarning, sScriptAfter, nTrfURLType);
cancelBubble(event);
}
</script>
<script language="JavaScript" type="text/javascript" src="./Manage Classes_files/PTMAF_PUSH_JS_MIN_1.js.下载">
</script>
<script language="JavaScript" type="text/javascript" src="./Manage Classes_files/PTNUI_PINTO_JS_MIN_129677.js.下载">
</script>
<script language="javascript">
var pt_calHeadstyle=" class='PTCALHEAD' "
var pt_calWeekHeadstyle=" class='PTCALWEEKHEAD' "
function dateitemrefs()
{
this.pt_dateheader = "/cs/ps/cache859/PT_PORTAL_IC_CLOSE_SD_CSS_1.gif";
this.pt_datering = "/cs/ps/cache859/PT_CURRENT_DATE_SD_CSS_1.gif";
this.pt_datesel = "/cs/ps/cache859/PT_SELECTED_DATE_SD_CSS_1.gif";
this.pt_nextmonth = "/cs/ps/cache859/PT_RIGHT_SCROLL_SD_CSS_1.gif";
this.pt_prevmonth= "/cs/ps/cache859/PT_LEFT_SCROLL_SD_CSS_1.gif";
this.pt_daystitle_hijri = "/cs/ps/cache859/PT_DATE_TITLE_S6_1.GIF";
this.pt_daystitle_thai = "/cs/ps/cache859/PT_DATE_TITLE_S0_1.GIF";
this.pt_daystitle_s0 = "/cs/ps/cache859/PT_DATE_TITLE_S0_1.GIF";
this.pt_daystitle_m1 = "/cs/ps/cache859/PT_DATE_TITLE_M1_1.GIF";
this.pt_daystitle_t2 = "/cs/ps/cache859/PT_DATE_TITLE_T2_1.GIF";
this.pt_daystitle_w3 = "/cs/ps/cache859/PT_DATE_TITLE_W3_1.GIF";
this.pt_daystitle_t4 = "/cs/ps/cache859/PT_DATE_TITLE_T4_1.GIF";
this.pt_daystitle_f5 = "/cs/ps/cache859/PT_DATE_TITLE_F5_1.gif";
this.pt_daystitle_s6 = "/cs/ps/cache859/PT_DATE_TITLE_S6_1.GIF";
}
function LoadCalendar()
{
var dateitems = new dateitemrefs();
loadImages(dateitems);
}
function DatePrompt0_win89(dtfield,promptfield,yrfmt,bsubmit)
{
setupTimeout2();
openDate_win89(dtfield, promptfield, "YMD/"+yrfmt,bsubmit,"G",0);
}
</script>
<script language="JavaScript" ptdefer="defer">
var bInModal = false;
function onLoadExt_win89() {
modalZoomName = null;
var oWin=window;
var oDoc=document;
ptTAObj_win89.init(oWin,oDoc,oDoc.win89,'/cs/ps/cache859/PT_SRT2UP_SEL_1.gif','/cs/ps/cache859/PT_SRT2DN_SEL_1.gif','/cs/ps/cache859/PT_PORTAL_IC_CLOSE_1.gif',500);
mediaQListernerEnabled();
var pt_wrapper = document.getElementById('PT_WRAPPER');
if (pt_wrapper) {pt_wrapper.setAttribute('class','ps_wrapper pst_side2-disabled pst_side1-fixed pst_panel-mode ');
addClass(pt_wrapper,sMDWrapperStyle);
removeClass(pt_wrapper,'pst_side1-disabled');
addClass(pt_wrapper,'pst_side2-disabled');
SetMDListSlideOutTitles(true);
sPageFFStyle = '';
}sMDWrapperStyle = ' pst_side2-disabled pst_side1-fixed pst_panel-mode '
var objPanelControlStyle = document.getElementById('ICPanelControlStyle');
if (objPanelControlStyle) objPanelControlStyle.value='pst_side2-disabled pst_side1-fixed pst_panel-mode ';
initWorkers('/cs/ps/cache859/PT_WORKER_MIN_1.js',5);
g_bAccessibilityMode=false;
var actn='';
setKeyEventHandler_win89();setMouseEventHandler();
ptEvent.add(window,'scroll',positionWAIT_win89);
if (typeof(ptLongEditCounter) != 'undefined' && ptLongEditCounter != null)
ptLongEditCounter.onLoadLongEditCounter();
objToBeFocus = null;
if (bPTDrag) CancelDragAccessible();
bPTDrag = false;
if (typeof oWin == 'undefined') setEventHandlers_win89('ICFirstAnchor_win89', 'ICLastAnchor_win89', false);
else
oWin.setEventHandlers_win89('ICFirstAnchor_win89', 'ICLastAnchor_win89', false);
try{
portalContextNodeURI = 'https://student.msu.edu/psc/ps_89/EMPLOYEE/SA';
SearchPageClose();
}catch(e) { if(typeof String !== 'undefined') alert('custom javascript error ' + e.message); }
if (top.window.isFModeLayout() && (typeof top.window.initHelp == 'function')) top.window.initHelp();
postUrl_win89='https://student.msu.edu/psc/ps_89/EMPLOYEE/SA/c/SSR_STUDENT_FL.SSR_MD_SP_FL.GBL';
if (typeof(initScrolls0) != 'undefined' && initScrolls0 != null) initScrolls0(false);
loadGrouplets('/cs/ps/cache859/PT_WORKER_MIN_1.js',5);
ptLoadingStatus_empty(0);
setupTimeout2();
processing_win89(0,3000);
ptConsole2.enable();
}
try{ptEvent.load(onLoadExt_win89);}catch(e){}
</script><!--Global site tag (gtag.js) - Google Analytics--><script type="text/javascript" async="" src="./Manage Classes_files/js(1)"></script><link id="SCC_PANEL_FL_1_css" rel="stylesheet" type="text/css" href="./Manage Classes_files/SCC_PANEL_FL_1.css"><link id="SCC_SIDE_PAGE_FL_1_css" rel="stylesheet" type="text/css" href="./Manage Classes_files/SCC_SIDE_PAGE_FL_1.css"><script id="SCC_NAVIGATION_JS_MIN_1_js" type="text/javascript" src="./Manage Classes_files/SCC_NAVIGATION_JS_MIN_1.js.下载"></script><script id="PT_CHART_LOAD_win89_MIN_129677_js" type="text/javascript" src="./Manage Classes_files/PT_CHART_LOAD_win89_MIN_129677.js.下载" pttarget="js"></script><script id="PS_CHART_DVT_JS_MIN_1_js" type="text/javascript" src="./Manage Classes_files/PS_CHART_DVT_JS_MIN_1.js.下载" pttarget="js"></script><link id="MSU_BOOTSTRAP_RESETS_MODAL_CSS_1_css" rel="stylesheet" type="text/css" href="./Manage Classes_files/MSU_BOOTSTRAP_RESETS_MODAL_CSS_1.css" pttarget="css"><link id="MSU_STYLES_FL_NEW_CSS_9_css" rel="stylesheet" type="text/css" href="./Manage Classes_files/MSU_STYLES_FL_NEW_CSS_9.css" pttarget="css"><link id="MSU_CLASSIC_ADA_1_MSU_DEFAULT_MACROSET_859_2_css" rel="stylesheet" type="text/css" href="./Manage Classes_files/MSU_CLASSIC_ADA_1_MSU_DEFAULT_MACROSET_859_2.css" pttarget="css"><link id="SSR_SS_1_css" rel="stylesheet" type="text/css" href="./Manage Classes_files/SSR_SS_1.css" pttarget="css"><link id="PTNUI_PINTO_CSS_1_css" rel="stylesheet" type="text/css" href="./Manage Classes_files/PTNUI_PINTO_CSS_1.css" pttarget="css"><link id="PTS_NUI_FFSTYLE_10_css" rel="stylesheet" type="text/css" href="./Manage Classes_files/PTS_NUI_FFSTYLE_10.css" pttarget="css"><link id="PTNUI_LIST_CSS_1_css" rel="stylesheet" type="text/css" href="./Manage Classes_files/PTNUI_LIST_CSS_1.css" pttarget="css"><link id="PS_CHART_DVT_NUI_1_css" rel="stylesheet" type="text/css" href="./Manage Classes_files/PS_CHART_DVT_NUI_1.css" pttarget="css"><link id="MSU_CLASSES_TERMS_CSS_3_css" rel="stylesheet" type="text/css" href="./Manage Classes_files/MSU_CLASSES_TERMS_CSS_3.css" pttarget="css"><script id="SSR_MANAGE_CLASSES_JS_MIN_1_js" type="text/javascript" src="./Manage Classes_files/SSR_MANAGE_CLASSES_JS_MIN_1.js.下载" pttarget="js"></script><script id="MSU_LOAD_CDNS_JS_MIN_1_js" type="text/javascript" src="./Manage Classes_files/MSU_LOAD_CDNS_JS_MIN_1.js.下载" pttarget="js"></script><script type="text/javascript" async="" src="./Manage Classes_files/jquery-3.3.1.min.js.下载"></script><script id="MSU_IE_META_JS_MIN_1_js" type="text/javascript" src="./Manage Classes_files/MSU_IE_META_JS_MIN_1.js.下载" pttarget="js"></script><meta content="IE=edge" http-equiv="X-UA-Compatible"><script id="MSU_FILTERS_JS_MIN_1_js" type="text/javascript" src="./Manage Classes_files/MSU_FILTERS_JS_MIN_1.js.下载" pttarget="js"></script><script type="text/javascript" async="" src="./Manage Classes_files/bootstrap.min.js.下载"></script><link id="MSU_CLASSES_MAIN_CSS_2_css" rel="stylesheet" type="text/css" href="./Manage Classes_files/MSU_CLASSES_MAIN_CSS_2.css" pttarget="css"><link rel="stylesheet" type="text/css" href="./Manage Classes_files/MSU_FLUID_TEMPLATE_859_6_MSU_DEFAULT_MACROSET_859_2.css" ptbranding="true"><script id="MSU_CLSRCH_CHECKBOXES_JS_MIN_1_js" type="text/javascript" src="./Manage Classes_files/MSU_CLSRCH_CHECKBOXES_JS_MIN_1.js.下载" pttarget="js"></script><script id="jquery_min" type="text/javascript" src="./Manage Classes_files/jquery.min.js.下载" pttarget="js"></script></head>
<body tabindex="-1" data-new-gr-c-s-check-loaded="14.1111.0" data-gr-ext-installed="" style="" data-new-gr-c-s-loaded="14.1111.0">
<div id="pt_envinfo" devicetype="pc" browser="CHROME/113.0/WIN10"></div>
<form id="SSR_MD_SP_FL" name="win89" method="post" action="https://student.msu.edu/psc/ps_89/EMPLOYEE/SA/c/MSU_CUSTOM_SR.MSU_SSR_CLSRCH_FL.GBL?Page=MSU_CLSRCH_FL&pslnkid=MSU_S201912220951208893089401&ICAJAXTrf=true&ICAJAX=1&ICMDTarget=start&ICMDListSlideout=true" autocomplete="off" class="PSForm">
<div class="ps_box-toolshiddens" id="win89divPSTOOLSHIDDENS"><div class="ps_modalmask_cover psc_hidden" id="pt_modalMaskCover"> </div><div class="ps_modalmask" id="pt_modalMask" style="height: 577px; width: 875px; display: none;"> </div><div id="pt_modals" class="ps_modal_controller" style="display: inline; background-color: rgb(255, 255, 255);"><div id="ptModalShadow" class="popupDragFrame" style="cursor:nw-resize"> </div></div>
<div class="ps_ajax_console psc_hidden" id="pt_console"><input type="button" id="COPYCONSOLE" value="Copy" onclick="ptConsole2.copy();" alt="copy to clipboard" title="copy to clipboard"><input type="button" id="CLEARCONSOLE" onclick="ptConsole2.clear();" value="Clear" alt="clear console" title="clear console"><input type="button" id="HIDECONSOLE" onclick="ptConsole2.hide();" value="Hide" alt="hide console" title="hide console"><input type="button" id="CLOSECONSOLE" onclick="ptConsole2.deactive();" value="Close" alt="close console" title="close console"></div><div class="ps_typeahead psc_hidden" id="pt_typeahead0" style="display: none;"><div id="pt_typeahead" class="ps_box-typeahead"> </div></div><div class="ps_box-announce ps_alert-normal" aria-live="polite" id="pt_liveregion"></div>
<div id="pt_dnd_win89" class="psc_hidden-readable">Press Control+M to start dragging object</div>
<div class="ps_box-group psc_layout psc_skipnav_container psc_hidden" id="PT_SKIPNAV_CONT">
<div class="ps_box-link psc_skipnav"><span class="ps-link-wrapper"><a class="ps-link" id="PT_SKIPNAV" onclick="javascript:cancelBubble(event);" href="javascript:SetMainConentFocus();" onblur="javascript:SetMainConentFocus(false);">Skip to Main Content</a></span></div>
</div>
<div class="psc_processing psc_hidden" id="WAIT_win89" style="visibility: hidden; display: none; right: 0px;" role="alertdialog" aria-busy="true" aria-live="assertive"><img id="processing" src="./Manage Classes_files/PT_PROCESSING_FMODE_1.gif" alt="Processing... please wait" title="Processing... please wait" role="alertdialog" aria-busy="true" aria-live="assertive"></div>
<div style="visibility: hidden; display: none; position: absolute; left: auto; top: -10000px; width: 1px; height: 1px; overflow: hidden;" aria-relevant="text additions" aria-live="assertive" aria-atomic="true" class="psc_processing psc_hidden" id="Delayed_win89" role="alertdialog" aria-busy="true"></div><div class="psc_saved psc_hidden" id="SAVED_win89" style="visibility: hidden; display: none;"><div><div id="saveWait_win89"><img src="./Manage Classes_files/PT_LOADER_1.gif" width="24" height="24" alt=""></div><div class="ps_saved_text"><span id="ptStatusText_win89"> </span></div></div></div><div class="x" id="win89divPSHIDDENFIELDS" style="display:none"><input type="hidden" name="ICType" id="ICType" value="Panel">
<input type="hidden" name="ICElementNum" id="ICElementNum" value="89">
<input type="hidden" name="ICStateNum" id="ICStateNum" value="11">
<input type="hidden" name="ICAction" id="ICAction" value="None">
<input type="hidden" name="ICModelCancel" id="ICModelCancel" value="0">
<input type="hidden" name="ICXPos" id="ICXPos" value="0">
<input type="hidden" name="ICYPos" id="ICYPos" value="0">
<input type="hidden" name="ResponsetoDiffFrame" id="ResponsetoDiffFrame" value="-1">
<input type="hidden" name="TargetFrameName" id="TargetFrameName" value="None">
<input type="hidden" name="FacetPath" id="FacetPath" value="None">
<input type="hidden" name="ICFocus" id="ICFocus" value="">
<input type="hidden" name="ICSaveWarningFilter" id="ICSaveWarningFilter" value="0">
<input type="hidden" name="ICChanged" id="ICChanged" value="0">
<input type="hidden" name="ICSkipPending" id="ICSkipPending" value="0">
<input type="hidden" name="ICAutoSave" id="ICAutoSave" value="0">
<input type="hidden" name="ICResubmit" id="ICResubmit" value="0">
<input type="hidden" name="ICSID" id="ICSID" value="jfBWdt0u4B2TGwLGJwJuoudNZ3w1ISef+1SAQJ0bkGY=">
<input type="hidden" name="ICActionPrompt" id="ICActionPrompt" value="false">
<input type="hidden" name="ICTypeAheadID" id="ICTypeAheadID" value="">
<input type="hidden" name="ICBcDomData" id="ICBcDomData" value="C~UnknownValue~EMPLOYEE~SA~NUI_FRAMEWORK.PT_LANDINGPAGE.GBL~PT_LANDINGPAGE~Students~UnknownValue~UnknownValue~https://student.msu.edu/psc/ps_78/EMPLOYEE/SA/c/NUI_FRAMEWORK.PT_LANDINGPAGE.GBL?&lp=SA.EMPLOYEE.MSU_PT_STUDENT_HP~UnknownValue*C~UnknownValue~EMPLOYEE~SA~SSR_STUDENT_FL.SSR_MD_SP_FL.GBL~SSR_MD_TGT_PAGE_FL~Manage Classes~UnknownValue~UnknownValue~https://student.msu.edu/psc/ps_89/EMPLOYEE/SA/c/SSR_STUDENT_FL.SSR_MD_SP_FL.GBL?Action=U&MD=Y&GMenu=SSR_STUDENT_FL&GComp=SSR_START_PAGE_FL&GPage=SSR_START_PAGE_FL&scname=CS_SSR_MANAGE_CLASSES_NAV&AJAXTransfer=y&ICAJAXTrf=true&ICMDListSlideout=true~UnknownValue">
<input type="hidden" name="ICDNDSrc" id="ICDNDSrc" value="">
<input type="hidden" name="ICPanelHelpUrl" id="ICPanelHelpUrl" value="https://sis.msu.edu/sishelp.html">
<input type="hidden" name="ICPanelName" id="ICPanelName" value="">
<input type="hidden" name="ICPanelControlStyle" id="ICPanelControlStyle" value=" pst_side1-fixed pst_panel-mode pst_side2-disabled pst_side2-hidden pst_collision-inter">
<input type="hidden" name="ICFind" id="ICFind" value="">
<input type="hidden" name="ICAddCount" id="ICAddCount" value="">
<input type="hidden" name="ICAppClsData" id="ICAppClsData" value="">
</div>
</div>
<a class="ps-anchor" id="ICFirstAnchor_win89"></a>
<div id="PT_WRAPPER" class="ps_wrapper pst_side1-fixed pst_panel-mode pst_side2-hidden pst_collision-inter">
<div class="ps_header" id="PT_HEADER">
<div class="ps_header_panel" id="PT_HEADER_PANEL"><div class="ps_pspagecontainer_hdr" id="win89divPSPAGECONTAINER_HDR">
<div class="ps_box-group psc_layout ps_header_bar-container" id="win89hdrdivPTLAYOUT_HEADER_GROUPBOX0"><div class=" psc_force-hidden" id="win89hdrdivICSCRIPTSID"><div class="ps_box-label" id="win89hdrdivICSCRIPTSIDlbl"><span class="ps-label"> </span></div><span class="ps_box-value" id="ICSCRIPTSID">ptnbsid=wRJ4WFFfsNPMTy%2bp%2bCT3ScJQH5Y%3d</span>
</div><div role="banner" class=" ps_header_bar" id="win89hdrdivPTLAYOUT_HEADER_GROUPBOX1"><div class=" ps_back_cont" id="win89hdrdivPT_NAV_CONT"><div class=" ps_system_cont" id="win89hdrdivPTLAYOUT_HEADER_GROUPBOX4"><div class="ps_box-button ps_button_backnav psc_toolaction-back psc_header-all" id="win89hdrdivPT_WORK_PT_BUTTON_BACK"><span class="ps-button-wrapper" title="Back"><a id="PT_WORK_PT_BUTTON_BACK" class="ps-button" role="button" href="javascript:DoBack('win89')" onclick="javascript:cancelBubble(event);"><img src="./Manage Classes_files/PT_NUI_BACK_PRIM_IMG_1.svg" id="PT_WORK_PT_BUTTON_BACK$IMG" class="ps-img" alt=""><span class="ps-text">Students</span></a></span></div><div class="ps_box-group psc_layout" id="win89hdrdiv$ICField69"></div></div><div class=" ps_custom_cont" id="win89hdrdivPT_CUSTOM_LEFT"></div></div><div class=" ps_pagetitle_cont" id="win89hdrdivPT_TITLE_CONT"><div class=" ps_system_cont" id="win89hdrdivPT_PAGETITLE"><h1 id="PT_PAGETITLE" class="ps_pagetitle"><span class="ps-text" id="PT_PAGETITLElbl">Manage Classes</span></h1></div><div class=" ps_custom_cont" id="win89hdrdivPT_CUSTOM_MIDDLE"></div></div><div class=" ps_actions_cont" id="win89hdrdivPT_ACTION_CONT"><div class=" ps_custom_cont " id="win89hdrdivPT_CUSTOM_RIGHT"></div><div class=" ps_system_cont" id="win89hdrdivPTLAYOUT_HEADER_GROUPBOX6"><div class="ps_box-button psc_image_only psc_toolaction-home ps_header_button ps_header-home psc_hide-BP2" id="win89hdrdivPT_HOME"><span class="ps-button-wrapper" title="Home"><a id="PT_HOME" class="ps-button" role="button" href="javascript:DoHome('https://student.msu.edu/psc/ps_89/EMPLOYEE/SA/s/WEBLIB_PTBR.ISCRIPT1.FieldFormula.IScript_StartPage')" onclick="javascript:cancelBubble(event);"><img src="./Manage Classes_files/PT_HEADER_HOME_1.svg" id="PT_HOME$IMG" class="ps-img" alt="Home"></a></span></div><div class="ps_box-group psc_layout ps_header_button ps_search-custom psc_hide-BP3" id="win89hdrdivPT_CUSTOM_SEARCH"></div><div class=" ps_header_button psc_header-all" id="win89hdrdiv$ICField54"><div class="ps_box-group psc_has_popup ps_box-button psc_menu-act ps_header_button psc_header-all psc_image_only" id="win89hdrdivPT_ACTION_MENU"><span class="ps-button-wrapper" title="Actions"><a class="ps-button" role="button" id="PT_ACTION_MENU$PIMG" onclick="javascript:cancelBubble(event);" aria-haspopup="true" href="javascript:submitAction_win89(document.win89,'PT_ACTION_MENU');"><span class="ps-text">Actions</span><img class="ps-img" src="./Manage Classes_files/PT_HEADER_ACTIONS_1.svg" alt="Actions List"></a></span><div class="psc_hidden" options="sPopupParentId@PT_ACTION_MENU$PIMG;bPIA@1;bPopup@1;bMask@0;bClose@1;bHeader@1;bCache@1;sStyle@ps_popup-menu ps_menutype-act;sTitle@Actions List Popup;bAutoClose@1;bMask@1;sMaskStyle@ps_masktrans;bVertical@1;bHeader@0;bPopupMenu@1;" id="PT_ACTION_MENU$divpop"><div class="ps_content-group ps_scrollable ps_scrollable_v sbar sbar_v" id="win89hdrdivPT_ACTION_MENUgrp" onscroll="doScroll(this, false);">
<ul role="menu" class="ps_box-group ps_box-menucontainer pt_keynav-list ps_menucontainer" id="win89hdrdiv$ICField13"><li role="presentation" class=" ps_custom_action ps_menusection " id="win89hdrdivPT_CUSTOM_ACTION"></li><li role="presentation" class=" ps_search_action ps_menusection " id="win89hdrdivPT_SEARCH_ACTION"></li><li role="presentation" class=" ps_ag_action ps_menusection " id="win89hdrdivPT_ACTGUIDE_ACTION"></li><li role="presentation" class="ps_box-group psc_layout ps_system_action ps_menusection" id="win89hdrdivPT_SYSTEM_ACTION"><ul role="presentation" class="ps_box-group psc_layout" id="win89hdrdivPT_SYSACT_CONT"><li role="presentation" class="ps_box-group ps_box-menuitem ps_header-previous ps_menuitem" id="win89hdrdivPT_SYSACT_PRVLST" ps_state=""><div role="presentation" class="ps_box-link psc_toolaction-previnlist" id="win89hdrdivPT_PREVINLIST"><span id="PT_PREVINLIST$span" class="ps-link-wrapper" role="presentation"><a id="PT_PREVINLIST" class="ps-link" ptlinktgt="pt_replace" tabindex="-1" role="menuitem" href="javascript:DoPrevInList(this)" onclick="javascript:cancelBubble(event);">Previous In List</a></span></div></li><li role="presentation" class="ps_box-group ps_box-menuitem ps_header-next ps_menuitem " id="win89hdrdivPT_SYSACT_NXTLST" ps_state=""><div role="presentation" class="ps_box-link psc_toolaction-nextinlist" id="win89hdrdivPT_NEXTINLIST"><span id="PT_NEXTINLIST$span" class="ps-link-wrapper" role="presentation"><a id="PT_NEXTINLIST" class="ps-link" ptlinktgt="pt_replace" tabindex="-1" role="menuitem" href="javascript:DoNextInList(this)" onclick="javascript:cancelBubble(event);">Next In List</a></span></div></li><li role="presentation" class="ps_box-group ps_box-menuitem ps_header-retlist ps_menuitem" id="win89hdrdivPT_SYSACT_RETLST" ps_state=""></li><li role="presentation" class="ps_box-group ps_box-menuitem ps_header-newwin ps_menuitem" id="win89hdrdivPT_SYSACT_NEWWIN"><div role="presentation" class="ps_box-link psc_toolaction-newwin" id="win89hdrdivPT_NEWWIN_MENU"><span id="PT_NEWWIN_MENU$span" class="ps-link-wrapper" role="presentation"><a id="PT_NEWWIN_MENU" class="ps-link" ptlinktgt="pt_replace" tabindex="-1" role="menuitem" href="javascript:processing_win89(0,3000); void DoNewWindowFL(this)" onclick="javascript:cancelBubble(event);">New Window</a></span></div></li><li role="presentation" class="ps_box-group ps_box-menuitem ps_header-home ps_menuitem psc_show-BP2" id="win89hdrdivPT_SYSACT_HOME"><div role="presentation" class="ps_box-link psc_toolaction-home" id="win89hdrdivPT_HOME_MENU"><span id="PT_HOME_MENU$span" class="ps-link-wrapper" role="presentation"><a id="PT_HOME_MENU" class="ps-link" ptlinktgt="pt_replace" tabindex="-1" role="menuitem" href="javascript:DoHome('https://student.msu.edu/psc/ps_89/EMPLOYEE/SA/s/WEBLIB_PTBR.ISCRIPT1.FieldFormula.IScript_StartPage')" onclick="javascript:cancelBubble(event);">Home</a></span></div></li><li role="presentation" class="ps_box-group ps_box-menuitem ps_header-gsearch ps_menuitem psc_show-BP3" id="win89hdrdivPT_SYSACT_GBLSRCH"></li><li role="presentation" class="ps_box-group ps_box-menuitem ps_header-addhp ps_menuitem" id="win89hdrdivPT_SYSACT_ADDHP"></li><li role="presentation" class="ps_box-group ps_box-menuitem ps_header-addnb ps_menuitem" id="win89hdrdivPT_SYSACT_ADDNB"></li><li role="presentation" class="ps_box-group ps_box-menuitem ps_header-addfav ps_menuitem" id="win89hdrdivPT_SYSACT_ADDFAV"><div role="presentation" class="ps_box-link" id="win89hdrdivPT_ADDFAV_MENU"><span id="PT_ADDFAV_MENU$span" class="ps-link-wrapper" role="presentation"><a id="PT_ADDFAV_MENU" class="ps-link" href="javascript:PTPinTo.SavePin('FAV');" ptlinktgt="pt_peoplecode" tabindex="-1" role="menuitem" onclick="javascript:cancelBubble(event);">Add to Favorites</a></span></div></li><li role="presentation" class="ps_box-group ps_box-menuitem ps_header-navbar ps_menuitem psc_show-BP4" id="win89hdrdivPT_SYSACT_NAVBAR"></li><li role="presentation" class="ps_box-group ps_box-menuitem ps_header-mcfconsole ps_menuitem" id="win89hdrdivPT_SYSACT_MCF"></li><li role="presentation" class="ps_box-group ps_box-menuitem ps_header-mypref ps_menuitem" id="win89hdrdivPT_SYSACT_MYPREF"><div role="presentation" class="ps_box-link" id="win89hdrdivPT_MY_PREFERENCES"><span id="PT_MY_PREFERENCES$span" class="ps-link-wrapper" role="presentation"><a id="PT_MY_PREFERENCES" class="ps-link" href="javascript:DoURLWarning('https://student.msu.edu/psc/ps_89/EMPLOYEE/SA/c/PTGP_MENU.PTGP_USERPREF_FL.GBL?CONTEXTIDPARAMS=PSFT_CS---MSU_SSR_CLSRCH_FL')" ptlinktgt="pt_peoplecode" tabindex="-1" role="menuitem" onclick="javascript:cancelBubble(event);">My Preferences</a></span></div></li><li role="presentation" class="ps_box-group ps_box-menuitem ps_header-access ps_menuitem" id="win89hdrdivPT_SYSACT_ACCESS"></li><li role="presentation" class="ps_box-group ps_box-menuitem ps_header-help ps_menuitem" id="win89hdrdivPT_SYSACT_HELP" ps_state=""><div role="presentation" class="ps_box-link psc_toolaction-help" id="win89hdrdivPT_HELP_MENU"><span id="PT_HELP_MENU$span" class="ps-link-wrapper" role="presentation"><a id="PT_HELP_MENU" class="ps-link" ptlinktgt="pt_replace" tabindex="-1" role="menuitem" href="javascript:DoHelp('PeopleSoft Online Help')" onclick="javascript:cancelBubble(event);">Help</a></span></div></li><li role="presentation" class="ps_box-group ps_box-menuitem ps_header-logout ps_menuitem" id="win89hdrdivPT_SYSACT_LOGOUT"><div role="presentation" class="ps_box-link psc_toolaction-logout" id="win89hdrdivPT_LOGOUT_MENU"><span id="PT_LOGOUT_MENU$span" class="ps-link-wrapper" role="presentation"><a id="PT_LOGOUT_MENU" class="ps-link" ptlinktgt="pt_replace" tabindex="-1" role="menuitem" href="javascript:DoLogout('https://student.msu.edu/psp/ps_89/EMPLOYEE/SA/?cmd=logout')" onclick="javascript:cancelBubble(event);">Sign Out</a></span></div></li></ul></li></ul></div></div></div></div></div></div></div><div class="ps_box-group psc_layout ps_header_confirmation" id="win89hdrdivPT_CONFIRM_CONT"><div role="alert" aria-live="assertive" class="ps_box-group psc_layout psc_confirmation-animate " id="win89hdrdivPT_CONFIRMATION"><div class="ps_box-group psc_layout psc_confirmation-area" id="win89hdrdivPT_CONFIRM_AREA"><div class="ps_box-longedit psc_disabled psc_wrappable psc_has_value psc_confirmation-msg" id="win89hdrdivPT_CONFIRM_MSG"><div class="ps_box-label" id="win89hdrdivPT_CONFIRM_MSGlbl"><span class="ps-label"> </span></div><span class="ps_box-value" id="PT_CONFIRM_MSG"> </span>
</div><div class="ps_box-button psc_image_only psc_modal-close psc_confirmation-close" id="win89hdrdivPT_CONFIRM_CLOSE"><span class="ps-button-wrapper" title="Close"><a id="PT_CONFIRM_CLOSE" class="ps-button" role="button" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'PT_CONFIRM_CLOSE');"><img src="./Manage Classes_files/PT_MODAL_CLOSE_NUI_1.svg" id="PT_CONFIRM_CLOSE$IMG" class="ps-img" alt="Close"></a></span></div></div></div></div><div class="ps_box-group psc_layout ps_ag-processheader" id="win89hdrdivPT_AG_LAYOUT_PT_AG_GROUPBOX3"></div><div class=" ps_header_bar_custom" id="win89hdrdivPT_CUSTOM_BOTTOM"><div class="ps_box-group" id="win89div$ICField101"><div class="ps_box-group psc_layout ps_apps_pageheader" id="win89div$ICField102"><div class="ps_box-group psc_layout MSU-change-term-button" id="win89div$ICField105"><div class="ps_box-group psc_layout psc_float-clearoverflow" id="win89div$ICField1"><ul class="ps_box-group psc_layout ps_collection" id="win89div$ICField6"><li class="ps_box-group psc_layout psc_float-left psc_margin-left5px psc_margin-top7px psc_margin-right2em psc_margin-bottom7px psc_margin-bottom15px psc_margin-top15px" id="win89divDERIVED_SSR_FL_GROUPBOX"><div class="ps_box-edit psc_disabled psc_icon psc_has_value psc_label-none psc_data-primary" id="win89divTERM_VAL_TBL_DESCR"><div class="ps_box-label" id="win89divTERM_VAL_TBL_DESCRlbl"><span class="ps-label"> </span></div><span class="ps_box-value" id="TERM_VAL_TBL_DESCR">Fall 2023</span>
</div></li><li class="ps_box-group psc_layout psc_margin-top7px psc_margin-left2em" id="win89divDERIVED_SSR_FL_SSR_CHANGE_BTN_GBX"><div class="ps_box-button" id="win89divDERIVED_SSR_FL_SSR_CHANGE_BTN"><span id="DERIVED_SSR_FL_SSR_CHANGE_BTN$span" class="ps-button-wrapper"><a id="DERIVED_SSR_FL_SSR_CHANGE_BTN" class="ps-button" role="button" ptlinktgt="pt_peoplecode" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'DERIVED_SSR_FL_SSR_CHANGE_BTN');">Change</a></span></div></li></ul></div></div></div><div class="ps_box-group psc_layout psc_panel-container psc_panel-fixed psc_panel-fixed psc_initial" id="win89divPT_PANEL2_CONTAIN"><div class="ps_box-group psc_layout psc_panel-action " id="win89divPT_PANEL2_NAV"><div class="ps_box-group psc_layout psc_panel-tabcontainer " id="win89divPT_PANEL2_TABCONT"><div class="ps_box-button psc_image_only psc_panel-button" id="win89divPT_PANEL2_BTN"><span class="ps-button-wrapper" title="Navigation Panel Control"><a id="PT_PANEL2_BTN" class="ps-button" role="button" aria-expanded="false" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'PT_PANEL2_BTN');"><img src="./Manage Classes_files/PT_PANEL_TAB_ICON_1.svg" id="PT_PANEL2_BTN$IMG" class="ps-img" alt="Navigation Panel Control"></a></span></div></div><div class="pst_panel-header-cont" id="PT_SIDE_PANEL$hcont"><h2 class="ps_header-group"><span class="ps-text" id="PT_SIDE_PANEL0$h">Class Search & Enroll</span></h2><div class="ps_box-button psc_modal-close pst_panel-close" id="PT_SIDE_PANEL$close$0"><span class="ps-button-wrapper" title="Close" id="PT_SIDE_PANEL$close$0span"><a class="ps-button" id="PT_SIDE_PANEL$close" role="button" href="javascript:submitAction_win89(document.win89,'PT_PANEL2_BTN');"><img class="ps-img" alt="Close" title="" src="./Manage Classes_files/PT_MODAL_CLOSE_NUI_1.svg"></a></span></div></div><section class="ps_box-group psc_layout psc_panel-actioninterior sidebar" id="win89divPT_PANEL2_ACTINNER"><div class="ps_box-group psc_layout " id="win89divMSU_CLSRCH_WRK2_GROUPBOX11"><div class="ps_box-group psc_layout psc_halign-left" id="win89divMSU_CLSRCH_WRK2_GROUPBOX10"><div class="ps_box-group psc_layout psc_halign-right" id="win89div$ICField42"><div class="ps_box-button w-100" id="win89divMSU_CLSRCH_WRK2_CLEAR_FLDS_PB"><span id="MSU_CLSRCH_WRK2_CLEAR_FLDS_PB$span" class="ps-button-wrapper" title="Clear Fields"><a id="MSU_CLSRCH_WRK2_CLEAR_FLDS_PB" class="ps-button" role="button" ptlinktgt="pt_peoplecode" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'MSU_CLSRCH_WRK2_CLEAR_FLDS_PB');">New Search</a></span></div></div><div class="ps_box-group psc_layout psc_padding-top15px psc_padding-bottom25px MSU-sidebar-btn
" id="win89div$ICField192"><div class="ps_box-button MSU-btn-primary w-100" id="win89divMSU_CLSRCH_WRK2_APPLY_PB"><span id="MSU_CLSRCH_WRK2_APPLY_PB$span" class="ps-button-wrapper" title="Apply to Selected Deltas"><a id="MSU_CLSRCH_WRK2_APPLY_PB" class="ps-button" role="button" ptlinktgt="pt_peoplecode" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'MSU_CLSRCH_WRK2_APPLY_PB');">Filter Results</a></span></div></div><ul class="ps_box-group psc_layout" id="win89div$ICField202"><li class="ps_box-group psc_layout" id="win89div$ICField196"><div class="ps_box-group psc_collapsible" id="win89div$ICField50"><h2 class="ps_header-group"><a class="ps-link" id="$ICField50" role="button" onclick="javascript:cancelBubble(event);" href="javascript:toggleGroup('win89div$ICField50','$ICField50');" aria-expanded="true">Class Status</a></h2><div class="ps_detail-group">
<div class="ps_box-checkbox ps_switch" id="win89divMSU_CLSRCH_WRK2_OPEN_STATUS"><input type="hidden" class="psc_off" id="MSU_CLSRCH_WRK2_OPEN_STATUS$chk" value="N">
<div onclick="doRadioOuterClick(this);cancelBubble(event);" class="ps_box-control" id="win89divMSU_CLSRCH_WRK2_OPEN_STATUSctrl"><input type="checkbox" id="MSU_CLSRCH_WRK2_OPEN_STATUS" class="ps-checkbox" ptchecked_val="Y" ptunchecked_val="N" role="switch" aria-label="Show Open Classes Only" value="Y" onclick="doRadioClick(this, 'MSU_CLSRCH_WRK2_OPEN_STATUS$chk');addchg_win89(this);submitAction_win89(this.form,this.id);" title="Show Open Classes Only" onfocus="setOutlineTimer(this.id);doFocus_win89(this,false,true);" onblur="clearOutline(this.nextElementSibling);"><label class="ps_indicator" for="MSU_CLSRCH_WRK2_OPEN_STATUS" ptchecked_text="Yes" ptunchecked_text="No"><span class="psc_on_container">Yes</span><span class="psc_off_container">No</span></label></div><div class="ps_box-label ps_right" id="win89divMSU_CLSRCH_WRK2_OPEN_STATUSlbl"><label for="MSU_CLSRCH_WRK2_OPEN_STATUS" id="MSU_CLSRCH_WRK2_OPEN_STATUS_LBL" class="ps-label">Show Open Classes Only</label></div>
</div></div></div></li><li class="ps_box-group psc_layout" id="win89div$ICField198"><div class="ps_box-group psc_collapsible psc_close" id="win89divMSU_CLSRCH_WRK2_GROUP2"><h2 class="ps_header-group"><a class="ps-link psc_close" id="MSU_CLSRCH_WRK2_GROUP2" role="button" onclick="javascript:cancelBubble(event);" href="javascript:toggleGroup('win89divMSU_CLSRCH_WRK2_GROUP2','MSU_CLSRCH_WRK2_GROUP2');" aria-expanded="false">Days</a></h2><div class="ps_detail-group psc_close">
<div class="ps_box-group psc_layout" id="win89div$ICField69"><div class="ps_box-radio psc_selected psc_display-block" id="win89divMSU_CLSRCH_WRK2_MSU_DAY_CRITERIA"><div class="ps_box-control" id="win89divMSU_CLSRCH_WRK2_MSU_DAY_CRITERIActrl"><input type="radio" name="MSU_CLSRCH_WRK2_MSU_DAY_CRITERIA" id="MSU_CLSRCH_WRK2_MSU_DAY_CRITERIA" class="ps-radio" onfocus="this.parentElement.parentElement.classList.add("psc_focus"); doFocus_win89(this,false,true);" onblur="this.parentElement.parentElement.classList.remove("psc_focus");" value="O" checked="checked" onclick="setupTimeout2();doFocus_win89(this,false,true);"></div><div class="ps_box-label ps_right" id="win89divMSU_CLSRCH_WRK2_MSU_DAY_CRITERIAlbl"><label for="MSU_CLSRCH_WRK2_MSU_DAY_CRITERIA" id="MSU_CLSRCH_WRK2_MSU_DAY_CRITERIA_LBL" class="ps-label">Only these days</label></div>
</div><div class="ps_box-radio psc_display-block" id="win89divMSU_CLSRCH_WRK2_MSU_DAY_CRITERIA$70$"><div class="ps_box-control" id="win89divMSU_CLSRCH_WRK2_MSU_DAY_CRITERIA$70$ctrl"><input type="radio" name="MSU_CLSRCH_WRK2_MSU_DAY_CRITERIA" id="MSU_CLSRCH_WRK2_MSU_DAY_CRITERIA$70$" class="ps-radio" onfocus="this.parentElement.parentElement.classList.add("psc_focus"); doFocus_win89(this,false,true);" onblur="this.parentElement.parentElement.classList.remove("psc_focus");" value="C" onclick="setupTimeout2();doFocus_win89(this,false,true);"></div><div class="ps_box-label ps_right" id="win89divMSU_CLSRCH_WRK2_MSU_DAY_CRITERIA$70$lbl"><label for="MSU_CLSRCH_WRK2_MSU_DAY_CRITERIA$70$" id="MSU_CLSRCH_WRK2_MSU_DAY_CRITERIA$70$_LBL" class="ps-label">Any of these days</label></div>
</div></div><div class="ps_box-group psc_layout MSU-btn-days" id="win89div$ICField191"><div class="ps_box-group psc_layout d-flex justify-content-between" id="win89div$ICField72"><div class="ps_box-checkbox psc_standard btn btn-light" id="win89divMSU_CLSRCH_WRK2_MON"><div class="ps_box-label" id="win89divMSU_CLSRCH_WRK2_MONlbl"><label for="MSU_CLSRCH_WRK2_MON" id="MSU_CLSRCH_WRK2_MON_LBL" class="ps-label">M</label></div><input type="hidden" class="psc_off" id="MSU_CLSRCH_WRK2_MON$chk" value="">
<div onclick="doRadioOuterClick(this);cancelBubble(event);" class="ps_box-control" id="win89divMSU_CLSRCH_WRK2_MONctrl"><input type="checkbox" id="MSU_CLSRCH_WRK2_MON" class="ps-checkbox" ptchecked_val="Y" ptunchecked_val="N" value="Y" onclick="doRadioClick(this, 'MSU_CLSRCH_WRK2_MON$chk');doFocus_win89(this,false,true);" title="M" onfocus="setOutlineTimer(this.id);doFocus_win89(this,false,true);" onblur="clearOutline(this.nextElementSibling);"><label class="ps_indicator" for="MSU_CLSRCH_WRK2_MON" ptchecked_text="Yes" ptunchecked_text="No"><span class="psc_on_container">Yes</span><span class="psc_off_container">No</span></label></div>
</div><div class="ps_box-checkbox psc_standard btn btn-light" id="win89divMSU_CLSRCH_WRK2_TUES"><div class="ps_box-label" id="win89divMSU_CLSRCH_WRK2_TUESlbl"><label for="MSU_CLSRCH_WRK2_TUES" id="MSU_CLSRCH_WRK2_TUES_LBL" class="ps-label">T</label></div><input type="hidden" class="psc_off" id="MSU_CLSRCH_WRK2_TUES$chk" value="">
<div onclick="doRadioOuterClick(this);cancelBubble(event);" class="ps_box-control" id="win89divMSU_CLSRCH_WRK2_TUESctrl"><input type="checkbox" id="MSU_CLSRCH_WRK2_TUES" class="ps-checkbox" ptchecked_val="Y" ptunchecked_val="N" value="Y" onclick="doRadioClick(this, 'MSU_CLSRCH_WRK2_TUES$chk');doFocus_win89(this,false,true);" title="T" onfocus="setOutlineTimer(this.id);doFocus_win89(this,false,true);" onblur="clearOutline(this.nextElementSibling);"><label class="ps_indicator" for="MSU_CLSRCH_WRK2_TUES" ptchecked_text="Yes" ptunchecked_text="No"><span class="psc_on_container">Yes</span><span class="psc_off_container">No</span></label></div>
</div><div class="ps_box-checkbox psc_standard btn btn-light" id="win89divMSU_CLSRCH_WRK2_WED"><div class="ps_box-label" id="win89divMSU_CLSRCH_WRK2_WEDlbl"><label for="MSU_CLSRCH_WRK2_WED" id="MSU_CLSRCH_WRK2_WED_LBL" class="ps-label">W</label></div><input type="hidden" class="psc_off" id="MSU_CLSRCH_WRK2_WED$chk" value="">
<div onclick="doRadioOuterClick(this);cancelBubble(event);" class="ps_box-control" id="win89divMSU_CLSRCH_WRK2_WEDctrl"><input type="checkbox" id="MSU_CLSRCH_WRK2_WED" class="ps-checkbox" ptchecked_val="Y" ptunchecked_val="N" value="Y" onclick="doRadioClick(this, 'MSU_CLSRCH_WRK2_WED$chk');doFocus_win89(this,false,true);" title="W" onfocus="setOutlineTimer(this.id);doFocus_win89(this,false,true);" onblur="clearOutline(this.nextElementSibling);"><label class="ps_indicator" for="MSU_CLSRCH_WRK2_WED" ptchecked_text="Yes" ptunchecked_text="No"><span class="psc_on_container">Yes</span><span class="psc_off_container">No</span></label></div>
</div><div class="ps_box-checkbox psc_standard btn btn-light" id="win89divMSU_CLSRCH_WRK2_THURS"><div class="ps_box-label" id="win89divMSU_CLSRCH_WRK2_THURSlbl"><label for="MSU_CLSRCH_WRK2_THURS" id="MSU_CLSRCH_WRK2_THURS_LBL" class="ps-label">Th</label></div><input type="hidden" class="psc_off" id="MSU_CLSRCH_WRK2_THURS$chk" value="">
<div onclick="doRadioOuterClick(this);cancelBubble(event);" class="ps_box-control" id="win89divMSU_CLSRCH_WRK2_THURSctrl"><input type="checkbox" id="MSU_CLSRCH_WRK2_THURS" class="ps-checkbox" ptchecked_val="Y" ptunchecked_val="N" value="Y" onclick="doRadioClick(this, 'MSU_CLSRCH_WRK2_THURS$chk');doFocus_win89(this,false,true);" title="Th" onfocus="setOutlineTimer(this.id);doFocus_win89(this,false,true);" onblur="clearOutline(this.nextElementSibling);"><label class="ps_indicator" for="MSU_CLSRCH_WRK2_THURS" ptchecked_text="Yes" ptunchecked_text="No"><span class="psc_on_container">Yes</span><span class="psc_off_container">No</span></label></div>
</div><div class="ps_box-checkbox psc_standard btn btn-light" id="win89divMSU_CLSRCH_WRK2_FRI"><div class="ps_box-label" id="win89divMSU_CLSRCH_WRK2_FRIlbl"><label for="MSU_CLSRCH_WRK2_FRI" id="MSU_CLSRCH_WRK2_FRI_LBL" class="ps-label">F</label></div><input type="hidden" class="psc_off" id="MSU_CLSRCH_WRK2_FRI$chk" value="">
<div onclick="doRadioOuterClick(this);cancelBubble(event);" class="ps_box-control" id="win89divMSU_CLSRCH_WRK2_FRIctrl"><input type="checkbox" id="MSU_CLSRCH_WRK2_FRI" class="ps-checkbox" ptchecked_val="Y" ptunchecked_val="N" value="Y" onclick="doRadioClick(this, 'MSU_CLSRCH_WRK2_FRI$chk');doFocus_win89(this,false,true);" title="F" onfocus="setOutlineTimer(this.id);doFocus_win89(this,false,true);" onblur="clearOutline(this.nextElementSibling);"><label class="ps_indicator" for="MSU_CLSRCH_WRK2_FRI" ptchecked_text="Yes" ptunchecked_text="No"><span class="psc_on_container">Yes</span><span class="psc_off_container">No</span></label></div>
</div><div class="ps_box-checkbox psc_standard btn btn-light" id="win89divMSU_CLSRCH_WRK2_SAT"><div class="ps_box-label" id="win89divMSU_CLSRCH_WRK2_SATlbl"><label for="MSU_CLSRCH_WRK2_SAT" id="MSU_CLSRCH_WRK2_SAT_LBL" class="ps-label">S</label></div><input type="hidden" class="psc_off" id="MSU_CLSRCH_WRK2_SAT$chk" value="">
<div onclick="doRadioOuterClick(this);cancelBubble(event);" class="ps_box-control" id="win89divMSU_CLSRCH_WRK2_SATctrl"><input type="checkbox" id="MSU_CLSRCH_WRK2_SAT" class="ps-checkbox" ptchecked_val="Y" ptunchecked_val="N" value="Y" onclick="doRadioClick(this, 'MSU_CLSRCH_WRK2_SAT$chk');doFocus_win89(this,false,true);" title="S" onfocus="setOutlineTimer(this.id);doFocus_win89(this,false,true);" onblur="clearOutline(this.nextElementSibling);"><label class="ps_indicator" for="MSU_CLSRCH_WRK2_SAT" ptchecked_text="Yes" ptunchecked_text="No"><span class="psc_on_container">Yes</span><span class="psc_off_container">No</span></label></div>
</div><div class="ps_box-checkbox psc_standard btn btn-light" id="win89divMSU_CLSRCH_WRK2_SUN"><div class="ps_box-label" id="win89divMSU_CLSRCH_WRK2_SUNlbl"><label for="MSU_CLSRCH_WRK2_SUN" id="MSU_CLSRCH_WRK2_SUN_LBL" class="ps-label">Su</label></div><input type="hidden" class="psc_off" id="MSU_CLSRCH_WRK2_SUN$chk" value="">
<div onclick="doRadioOuterClick(this);cancelBubble(event);" class="ps_box-control" id="win89divMSU_CLSRCH_WRK2_SUNctrl"><input type="checkbox" id="MSU_CLSRCH_WRK2_SUN" class="ps-checkbox" ptchecked_val="Y" ptunchecked_val="N" value="Y" onclick="doRadioClick(this, 'MSU_CLSRCH_WRK2_SUN$chk');doFocus_win89(this,false,true);" title="Su" onfocus="setOutlineTimer(this.id);doFocus_win89(this,false,true);" onblur="clearOutline(this.nextElementSibling);"><label class="ps_indicator" for="MSU_CLSRCH_WRK2_SUN" ptchecked_text="Yes" ptunchecked_text="No"><span class="psc_on_container">Yes</span><span class="psc_off_container">No</span></label></div>
</div></div></div></div></div></li><li class="ps_box-group psc_layout" id="win89div$ICField199"><div class="ps_box-group psc_collapsible psc_close" id="win89divMSU_CLSRCH_WRK2_MSU_GROUP10"><h2 class="ps_header-group"><a class="ps-link psc_close" id="MSU_CLSRCH_WRK2_MSU_GROUP10" role="button" onclick="javascript:cancelBubble(event);" href="javascript:toggleGroup('win89divMSU_CLSRCH_WRK2_MSU_GROUP10','MSU_CLSRCH_WRK2_MSU_GROUP10');" aria-expanded="false">Times</a></h2><div class="ps_detail-group psc_close">
<div id="win89divMSU_CLSRCH_WRK2_START_TIME" class="ps_box-edit psc_time psc_label-top"><div id="win89divMSU_CLSRCH_WRK2_START_TIMElbl" class="ps_box-label"><label for="MSU_CLSRCH_WRK2_START_TIME" id="MSU_CLSRCH_WRK2_START_TIME_LBL" class="ps-label">Starts on or after</label></div><div id="win89divMSU_CLSRCH_WRK2_START_TIMEctrl" class="ps_box-control"><input type="time" id="MSU_CLSRCH_WRK2_START_TIME" class="ps-edit" placeholder="" value="" maxlength="7" onclick="javascript:cancelBubble(event);" onchange="addchg_win89(this);">
</div></div><div id="win89divMSU_CLSRCH_WRK2_END_TIME" class="ps_box-edit psc_time psc_padding-top5px psc_label-top"><div id="win89divMSU_CLSRCH_WRK2_END_TIMElbl" class="ps_box-label"><label for="MSU_CLSRCH_WRK2_END_TIME" id="MSU_CLSRCH_WRK2_END_TIME_LBL" class="ps-label">Ends on or before</label></div><div id="win89divMSU_CLSRCH_WRK2_END_TIMEctrl" class="ps_box-control"><input type="time" id="MSU_CLSRCH_WRK2_END_TIME" class="ps-edit" value="" maxlength="7" onclick="javascript:cancelBubble(event);" onchange="addchg_win89(this);">
</div></div></div></div></li><li class="ps_box-group psc_layout" id="win89div$ICField200"><div class="ps_box-group psc_collapsible psc_close" id="win89divMSU_CLSRCH_WRK2_GROUP3"><h2 class="ps_header-group"><a class="ps-link psc_close" id="MSU_CLSRCH_WRK2_GROUP3" role="button" onclick="javascript:cancelBubble(event);" href="javascript:toggleGroup('win89divMSU_CLSRCH_WRK2_GROUP3','MSU_CLSRCH_WRK2_GROUP3');" aria-expanded="false">Instructors</a></h2><div class="ps_detail-group psc_close">
<div class="ps_box-group psc_layout" id="win89divMSU_CLSRCH_WRK2_MSU_GROUPBOX30"><div id="win89divMSU_CLSRCH_WRK2_LAST_NAME" class="ps_box-edit psc_display-inline"><div id="win89divMSU_CLSRCH_WRK2_LAST_NAMElbl" class="ps_box-label"><label for="MSU_CLSRCH_WRK2_LAST_NAME" id="MSU_CLSRCH_WRK2_LAST_NAME_LBL" class="ps-label">Name</label></div><div id="win89divMSU_CLSRCH_WRK2_LAST_NAMEctrl" class="ps_box-control"><input type="text" id="MSU_CLSRCH_WRK2_LAST_NAME" class="ps-edit" placeholder="Filter Name" value="" maxlength="30" onclick="javascript:cancelBubble(event);">
</div></div></div><div class="ps_box-group psc_layout" id="win89divMSU_CLSRCH_WRK2_GROUPBOX15"><div class="ps_box-grid-flex psc_rownumber-hide MSU-instructors-scroll" id="win89divMSU_CLSRCH_I_DV$0"><div class="ps_box-grid-header" id="win89divMSU_CLSRCH_I_DVhdr$0"><div class="ps_box-grid-title"></div><div class="ps_box-grid-header_bar"></div></div><div class="ps_box-gridc" id="win89divMSU_CLSRCH_I_DVgridc$0"><div class="ps_box-gridc-right" id="win89divMSU_CLSRCH_I_DVgridc-right$0"><div onscroll="cancelBubble(event);doScroll(this, false);" class="ps_box-grid ps_scrollable sbar sbar_v ps_scrollable_v" id="win89divMSU_CLSRCH_I_DV$grid$0"><table class="ps_grid-flex"><tbody class="ps_grid-body"><tr class="ps_grid-row" id="MSU_CLSRCH_I_DV$0_row_0">
<td class="ps_grid-cell psc_checkbox ptgrid-multiselect"><div class="ps_box_grid-col ps_box-checkbox psc_standard" id="win89divMSU_CLSRCH_I_DV$selmh$0$$0"><input type="hidden" id="MSU_CLSRCH_I_DV$selmh$0$$0" class="psc_off" value="N"><div onclick="var obj=this.querySelector('.ps-checkbox'); obj.focus();" class="ps_box-control" id="win89divMSU_CLSRCH_I_DVctrl$0$$0"><input type="checkbox" id="MSU_CLSRCH_I_DV$selm$0$$0" class="ps-checkbox psc_rowselect" ptchecked_val="Y" ptunchecked_val="N" onclick="setRowSelected(this,'MSU_CLSRCH_I_DV$0','MSU_CLSRCH_I_DV$0_row_0', event);" onfocus="setOutlineTimer(this.id);" onblur="clearOutline(this.nextElementSibling);" psnchg="0" title="Select this row" aria-labelledby="MSU_CLSRCH_WRK2_INSTR_NAME$0"><label class="ps_indicator" for="MSU_CLSRCH_I_DV$0" ptchecked_text="Yes" ptunchecked_text="No"><div class="psc_on_container">Yes</div><div class="psc_off_container">No</div></label></div></div></td>
<td class="ps_grid-cell psc_num ptgrid-rownumber"><div id="win89divMSU_CLSRCH_I_DVRowNum$0$0" class="ps_box-edit psc_disabled psc_rownum"><span class="ps_box-value" id="MSU_CLSRCH_I_DVRowNum$0$0">1</span></div></td>
<td class="ps_grid-cell">
<div class="ps_box-edit psc_disabled psc_label-suppressed psc_has_value" id="win89divMSU_CLSRCH_WRK2_INSTR_NAME$0"><span class="ps_box-value" id="MSU_CLSRCH_WRK2_INSTR_NAME$0">Chitwood,Daniel</span>
</div></td>
</tr>
<tr class="ps_grid-row" id="MSU_CLSRCH_I_DV$0_row_1">
<td class="ps_grid-cell psc_checkbox ptgrid-multiselect"><div class="ps_box_grid-col ps_box-checkbox psc_standard" id="win89divMSU_CLSRCH_I_DV$selmh$1$$0"><input type="hidden" id="MSU_CLSRCH_I_DV$selmh$1$$0" class="psc_off" value="N"><div onclick="var obj=this.querySelector('.ps-checkbox'); obj.focus();" class="ps_box-control" id="win89divMSU_CLSRCH_I_DVctrl$1$$0"><input type="checkbox" id="MSU_CLSRCH_I_DV$selm$1$$0" class="ps-checkbox psc_rowselect" ptchecked_val="Y" ptunchecked_val="N" onclick="setRowSelected(this,'MSU_CLSRCH_I_DV$0','MSU_CLSRCH_I_DV$0_row_1', event);" onfocus="setOutlineTimer(this.id);" onblur="clearOutline(this.nextElementSibling);" psnchg="0" title="Select this row" aria-labelledby="MSU_CLSRCH_WRK2_INSTR_NAME$1"><label class="ps_indicator" for="MSU_CLSRCH_I_DV$0" ptchecked_text="Yes" ptunchecked_text="No"><div class="psc_on_container">Yes</div><div class="psc_off_container">No</div></label></div></div></td>
<td class="ps_grid-cell psc_num ptgrid-rownumber"><div id="win89divMSU_CLSRCH_I_DVRowNum$0$1" class="ps_box-edit psc_disabled psc_rownum"><span class="ps_box-value" id="MSU_CLSRCH_I_DVRowNum$0$1">2</span></div></td>
<td class="ps_grid-cell">
<div class="ps_box-edit psc_disabled psc_label-suppressed psc_has_value" id="win89divMSU_CLSRCH_WRK2_INSTR_NAME$1"><span class="ps_box-value" id="MSU_CLSRCH_WRK2_INSTR_NAME$1">Fullard,Andrew</span>
</div></td>
</tr>
<tr class="ps_grid-row" id="MSU_CLSRCH_I_DV$0_row_2">
<td class="ps_grid-cell psc_checkbox ptgrid-multiselect"><div class="ps_box_grid-col ps_box-checkbox psc_standard" id="win89divMSU_CLSRCH_I_DV$selmh$2$$0"><input type="hidden" id="MSU_CLSRCH_I_DV$selmh$2$$0" class="psc_off" value="N"><div onclick="var obj=this.querySelector('.ps-checkbox'); obj.focus();" class="ps_box-control" id="win89divMSU_CLSRCH_I_DVctrl$2$$0"><input type="checkbox" id="MSU_CLSRCH_I_DV$selm$2$$0" class="ps-checkbox psc_rowselect" ptchecked_val="Y" ptunchecked_val="N" onclick="setRowSelected(this,'MSU_CLSRCH_I_DV$0','MSU_CLSRCH_I_DV$0_row_2', event);" onfocus="setOutlineTimer(this.id);" onblur="clearOutline(this.nextElementSibling);" psnchg="0" title="Select this row" aria-labelledby="MSU_CLSRCH_WRK2_INSTR_NAME$2"><label class="ps_indicator" for="MSU_CLSRCH_I_DV$0" ptchecked_text="Yes" ptunchecked_text="No"><div class="psc_on_container">Yes</div><div class="psc_off_container">No</div></label></div></div></td>
<td class="ps_grid-cell psc_num ptgrid-rownumber"><div id="win89divMSU_CLSRCH_I_DVRowNum$0$2" class="ps_box-edit psc_disabled psc_rownum"><span class="ps_box-value" id="MSU_CLSRCH_I_DVRowNum$0$2">3</span></div></td>
<td class="ps_grid-cell">
<div class="ps_box-edit psc_disabled psc_label-suppressed psc_has_value" id="win89divMSU_CLSRCH_WRK2_INSTR_NAME$2"><span class="ps_box-value" id="MSU_CLSRCH_WRK2_INSTR_NAME$2">Johnson,Kristen</span>
</div></td>
</tr>
<tr class="ps_grid-row" id="MSU_CLSRCH_I_DV$0_row_3">
<td class="ps_grid-cell psc_checkbox ptgrid-multiselect"><div class="ps_box_grid-col ps_box-checkbox psc_standard" id="win89divMSU_CLSRCH_I_DV$selmh$3$$0"><input type="hidden" id="MSU_CLSRCH_I_DV$selmh$3$$0" class="psc_off" value="N"><div onclick="var obj=this.querySelector('.ps-checkbox'); obj.focus();" class="ps_box-control" id="win89divMSU_CLSRCH_I_DVctrl$3$$0"><input type="checkbox" id="MSU_CLSRCH_I_DV$selm$3$$0" class="ps-checkbox psc_rowselect" ptchecked_val="Y" ptunchecked_val="N" onclick="setRowSelected(this,'MSU_CLSRCH_I_DV$0','MSU_CLSRCH_I_DV$0_row_3', event);" onfocus="setOutlineTimer(this.id);" onblur="clearOutline(this.nextElementSibling);" psnchg="0" title="Select this row" aria-labelledby="MSU_CLSRCH_WRK2_INSTR_NAME$3"><label class="ps_indicator" for="MSU_CLSRCH_I_DV$0" ptchecked_text="Yes" ptunchecked_text="No"><div class="psc_on_container">Yes</div><div class="psc_off_container">No</div></label></div></div></td>
<td class="ps_grid-cell psc_num ptgrid-rownumber"><div id="win89divMSU_CLSRCH_I_DVRowNum$0$3" class="ps_box-edit psc_disabled psc_rownum"><span class="ps_box-value" id="MSU_CLSRCH_I_DVRowNum$0$3">4</span></div></td>
<td class="ps_grid-cell">
<div class="ps_box-edit psc_disabled psc_label-suppressed psc_has_value" id="win89divMSU_CLSRCH_WRK2_INSTR_NAME$3"><span class="ps_box-value" id="MSU_CLSRCH_WRK2_INSTR_NAME$3">Kopenhafer,Claire</span>
</div></td>
</tr>
</tbody></table>
</div></div></div></div></div></div></div></li></ul><div class="ps_box-group psc_layout" id="win89div$ICField58"><div class="ps_box-link p-3 w-100 MSU-addtl-link" id="win89divMSU_CLSRCH_WRK2_ADDL_DATA_PB"><span id="MSU_CLSRCH_WRK2_ADDL_DATA_PB$span" class="ps-link-wrapper" title="Additional Data"><a id="MSU_CLSRCH_WRK2_ADDL_DATA_PB" class="ps-link" ptlinktgt="pt_peoplecode" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'MSU_CLSRCH_WRK2_ADDL_DATA_PB');">Additional Search Filters</a></span></div></div><div class="ps_box-group psc_layout my-4 MSU-sidebar-btn" id="win89div$ICField49"><div class="ps_box-group psc_layout" id="win89div$ICField214"><div class="ps_box-button MSU-btn-primary w-100" id="win89divMSU_CLSRCH_WRK2_APPLY_PB$186$"><span id="MSU_CLSRCH_WRK2_APPLY_PB$186$$span" class="ps-button-wrapper" title="Apply to Selected Deltas"><a id="MSU_CLSRCH_WRK2_APPLY_PB$186$" class="ps-button" role="button" ptlinktgt="pt_peoplecode" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'MSU_CLSRCH_WRK2_APPLY_PB$186$');">Filter Results</a></span></div></div></div></div></div></section></div><div class="ps_box-group psc_layout psc_panel-content" id="win89divPT_PANEL2_MAIN"><section class="ps_box-group psc_layout psc_panel-contentinterior MSU-content-search" id="win89divPT_PANEL2_CNTINNER"><div class="ps_box-group psc_layout " id="win89divMSU_SR0047_WRK_GROUPBOX8"><div class="ps_box-group psc_layout" id="win89divPT_PANEL2_TITLE1"><div class="ps_box-group psc_layout " id="win89divMSU_SR0047_WRK_GROUPBOX17"><div class="ps_box-group psc_layout jumbotron jumbotron-fluid" id="win89divMSU_SR0047_WRK_GROUPBOX4"><div class="ps_box-group psc_layout container" id="win89div$ICField131"><div class="ps_box-group psc_layout" id="win89div$ICField$203$"><div class="ps_box-htmlarea psc_padding-bottom5px" id="win89divMSU_RSLT_NAV_WK_HTMLAREA1" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<h2>Search for Classes</h2>
<!-- End HTML Area -->
</div>
</div></div><div class="ps_box-group psc_layout" id="win89divMSU_CLSRCH_WRK2_GROUP1"><div class="ps_box-dropdown psc_display-inlineblock msu_filter-subject" id="win89divMSU_CLSRCH_WRK2_SUBJECT"><div class="ps_box-label" id="win89divMSU_CLSRCH_WRK2_SUBJECTlbl"><label for="MSU_CLSRCH_WRK2_SUBJECT" id="MSU_CLSRCH_WRK2_SUBJECT_LBL" class="ps-label">Subject (Recommended)</label></div><div class="ps_box-control" id="win89divMSU_CLSRCH_WRK2_SUBJECTctrl"><select id="MSU_CLSRCH_WRK2_SUBJECT" class="ps-dropdown" size="1" onclick="javascript:cancelBubble(event);" onchange="addchg_win89(this);" onkeydown="if ((typeof isLoaderInProcess == 'function') && isLoaderInProcess() && ptCommonObj2!=null) { ptCommonObj2.terminateEvent(event); } ">
<option value=""> </option>
<option value="CMSE" selected="selected">CMSE-Comp Math,Science,Engineering</option>
</select></div>
</div><div id="win89divMSU_CLSRCH_WRK2_CATALOG_NBR" class="ps_box-edit psc_display-inlineblock msu_catalog-filter"><div id="win89divMSU_CLSRCH_WRK2_CATALOG_NBRlbl" class="ps_box-label"><label for="MSU_CLSRCH_WRK2_CATALOG_NBR" id="MSU_CLSRCH_WRK2_CATALOG_NBR_LBL" class="ps-label">Catalog Nbr</label></div><div id="win89divMSU_CLSRCH_WRK2_CATALOG_NBRctrl" class="ps_box-control"><input type="text" id="MSU_CLSRCH_WRK2_CATALOG_NBR" class="ps-edit" value="" maxlength="10" onclick="javascript:cancelBubble(event);" onchange="addchg_win89(this);return doEdits_win89(this,'','N','N','N','N','Y','N',0);">
</div></div></div><div class="ps_box-group psc_layout input-group psc_padding-top15px" id="win89div$ICField71"><div id="win89divMSU_CLSRCH_WRK2_PTUN_KEYWORD" class="ps_box-edit "><div id="win89divMSU_CLSRCH_WRK2_PTUN_KEYWORDlbl" class="ps_box-label"><label for="MSU_CLSRCH_WRK2_PTUN_KEYWORD" id="MSU_CLSRCH_WRK2_PTUN_KEYWORD_LBL" class="ps-label">Search</label></div><div id="win89divMSU_CLSRCH_WRK2_PTUN_KEYWORDctrl" class="ps_box-control"><input type="search" id="MSU_CLSRCH_WRK2_PTUN_KEYWORD" class="ps-edit" placeholder="" value="" maxlength="254" onclick="javascript:cancelBubble(event);">
</div></div><div class="ps_box-button psc_icon-hover MSU-btn-primary " id="win89divMSU_CLSRCH_WRK_SSR_PB_SEARCH"><span class="ps-button-wrapper" title="Search"><a id="MSU_CLSRCH_WRK_SSR_PB_SEARCH" class="ps-button" role="button" aria-label="Search" title="Search" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'MSU_CLSRCH_WRK_SSR_PB_SEARCH');" onmouseover="document.MSU_CLSRCH_WRK_SSR_PB_SEARCH$IMG.src='/cs/ps/cache859/MSU_SEARCH_ICON_HVR2_1.PNG'" onmouseout="document.MSU_CLSRCH_WRK_SSR_PB_SEARCH$IMG.src='/cs/ps/cache859/MSU_SEARCH_ICON_HVR2_1.PNG'"><span class="ps-text"></span><img src="./Manage Classes_files/MSU_SEARCH_ICON_HVR2_1.PNG" id="MSU_CLSRCH_WRK_SSR_PB_SEARCH$IMG" class="ps-img" alt=""></a></span></div></div></div></div><div class="ps_box-htmlarea psc_hidden psc_label-none" id="win89div$ICField73" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-group psc_layout MSU-search-results-container " id="win89divMSU_SR0047_WRK_GROUPBOX"><div class="ps_box-group psc_layout" id="win89div$ICField78"><div class="ps_box-group psc_layout d-flex" id="win89divMSU_RSLT_NAV_WK_"><div class="ps_box-group psc_layout mr-auto align-self-end pb-1" id="win89divMSU_RSLT_NAV_WK_$49$"><div class="ps_box-group psc_layout psc_forcepaddingnone psc_valign-bottom psc_halign-left" id="win89divMSU_RSLT_NAV_WK_$51$"><div class="ps_box-edit psc_disabled psc_has_value psc_label-none psc_bold mb-0" id="win89divMSU_RSLT_NAV_WK_PTPG_ROWS_GRID"><span class="ps_box-value" id="MSU_RSLT_NAV_WK_PTPG_ROWS_GRID">44 results</span>
<div class="ps_box-label" id="win89divMSU_RSLT_NAV_WK_PTPG_ROWS_GRIDlbl"><span class="ps-label"> </span></div></div></div></div><div class="ps_box-group psc_layout" id="win89divMSU_RSLT_NAV_WK_SEARCHGROUPBOX"><div class="ps_box-group psc_layout" id="win89divMSU_RSLT_NAV_WK_$47$"><div class="ps_box-group psc_layout psc_padding-rightnone, psc_padding-leftnone, psc_margin-rightnone, psc_margin-leftnone, ps_tabs, psc_border-none" id="win89divMSU_RSLT_NAV_WK_$52$"><div onclick="javascript:OnRowAction(this,'MSU_RSLT_NAV_WK_SEARCH_CONDITION1');cancelBubble(event);" role="button" class="ps_box-group psc_layout psc_rowact ps_tab back-to-top" tabindex="0" id="win89divMSU_RSLT_NAV_WK_$35$"></div><div class="ps_box-group psc_layout ps_tab psc_transparent psc_padding-right0_5em" id="win89divMSU_RSLT_NAV_WK_$59$"></div><div class=" ps_tab psc_border-none psc_transparent psc_padding-bottom0_8em" id="win89divMSU_RSLT_NAV_WK_$57$"></div><div class="ps_box-group psc_layout ps_tab psc_transparent psc_padding-left0_1em" id="win89divMSU_RSLT_NAV_WK_$42$"></div><div onclick="javascript:OnRowAction(this,'MSU_RSLT_NAV_WK_SEARCH_CONDITION2');cancelBubble(event);" role="button" class="ps_box-group psc_layout psc_rowact ps_tab back-to-top" tabindex="0" id="win89divMSU_RSLT_NAV_WK_$63$"></div></div></div></div></div><div class="ps_box-group psc_layout psc_forcepaddingnone" id="win89div$ICField$2$"><div class="ps_box-group psc_layout" id="win89div$ICField139"><div class="ps_box-grid-flex psc_forcepadingnone psc_label-none MSU-search-results" id="win89divDESCR100$0"><div class="ps_box-grid-header" id="win89divDESCR100hdr$0"><div class="ps_box-grid-title"></div><div class="ps_box-grid-header_bar"></div></div><div class="ps_box-gridc" id="win89divDESCR100gridc$0"><div class="ps_box-gridc-right" id="win89divDESCR100gridc-right$0"><div onscroll="cancelBubble(event);doScroll(this, false);" class="ps_box-grid ps_scrollable sbar sbar_v ps_scrollable_v" id="win89divDESCR100$grid$0"><table class="ps_grid-flex"><tbody class="ps_grid-body"><tr class="ps_grid-row psc_rowact" id="DESCR100$0_row_0" tabindex="0" data-role="button" onclick="javascript:OnRowAction(this,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$0');cancelBubble(event);">
<td class="ps_grid-cell">
<div id="win89divMSU_RSLT_NAV_WK_GROUPBUTTON$0" class="ps_box-group psc_layout class-main-padding">
<div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft MSU-course-subject-label" id="win89divMSU_RSLT_NAV_WK_HTMLAREA$0" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
CMSE 201: <strong>Computational Modeling and Data Analysis I
<!-- End HTML Area -->
</strong></div><strong>
</strong></div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA1$207$$0" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Lecture</strong> (4.00 units)<span class="text-secondary ml-2"><small><i class="fas fa-circle"></i> <strong>Wait List</strong></small></span>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA2$0" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<small>Section 001 / Class Nbr 14272 / Regular Academic Session</small>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small mt-3" id="win89divMSU_RSLT_NAV_WK_HTMLAREA3$0" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Mon Wed : 8:00 AM-9:50 AM</strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA4$0" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="far fa-calendar-alt"></i><span class="ml-2">08/28/2023 - 12/10/2023</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA9$0" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div></div></td>
<td class="ps_grid-cell">
<div id="win89div$ICField195$0" class="ps_box-group psc_layout">
<div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA6$0" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA7$0" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed mb-4" id="win89divMSU_RSLT_NAV_WK_HTMLAREA8$0" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA5$0" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="fas fa-user"></i><span class="ml-2">To Be Announced</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-link psc_trigger psc_trigger psc_hidden" id="win89divMSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$0"><span id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$span$0" class="ps-link-wrapper" title="Back"><a id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$0" class="ps-link" ptlinktgt="pt_peoplecode" tabindex="-1" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$0');"> </a></span></div></div></td>
</tr>
<tr class="ps_grid-row psc_rowact" id="DESCR100$0_row_1" tabindex="0" data-role="button" onclick="javascript:OnRowAction(this,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$1');cancelBubble(event);">
<td class="ps_grid-cell">
<div id="win89divMSU_RSLT_NAV_WK_GROUPBUTTON$1" class="ps_box-group psc_layout class-main-padding">
<div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft MSU-course-subject-label" id="win89divMSU_RSLT_NAV_WK_HTMLAREA$1" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
CMSE 201: <strong>Computational Modeling and Data Analysis I
<!-- End HTML Area -->
</strong></div><strong>
</strong></div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA1$207$$1" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Lecture</strong> (4.00 units)<span class="text-secondary ml-2"><small><i class="fas fa-circle"></i> <strong>Wait List</strong></small></span>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA2$1" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<small>Section 002 / Class Nbr 14273 / Regular Academic Session</small>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small mt-3" id="win89divMSU_RSLT_NAV_WK_HTMLAREA3$1" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Mon Wed : 10:20 AM-12:10 PM</strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA4$1" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="far fa-calendar-alt"></i><span class="ml-2">08/28/2023 - 12/10/2023</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA9$1" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div></div></td>
<td class="ps_grid-cell">
<div id="win89div$ICField195$1" class="ps_box-group psc_layout">
<div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA6$1" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA7$1" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed mb-4" id="win89divMSU_RSLT_NAV_WK_HTMLAREA8$1" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA5$1" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="fas fa-user"></i><span class="ml-2">To Be Announced</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-link psc_trigger psc_trigger psc_hidden" id="win89divMSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$1"><span id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$span$1" class="ps-link-wrapper" title="Back"><a id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$1" class="ps-link" ptlinktgt="pt_peoplecode" tabindex="-1" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$1');"> </a></span></div></div></td>
</tr>
<tr class="ps_grid-row psc_rowact" id="DESCR100$0_row_2" tabindex="0" data-role="button" onclick="javascript:OnRowAction(this,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$2');cancelBubble(event);">
<td class="ps_grid-cell">
<div id="win89divMSU_RSLT_NAV_WK_GROUPBUTTON$2" class="ps_box-group psc_layout class-main-padding">
<div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft MSU-course-subject-label" id="win89divMSU_RSLT_NAV_WK_HTMLAREA$2" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
CMSE 201: <strong>Computational Modeling and Data Analysis I
<!-- End HTML Area -->
</strong></div><strong>
</strong></div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA1$207$$2" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Lecture</strong> (4.00 units)<span class="text-secondary ml-2"><small><i class="fas fa-circle"></i> <strong>Wait List</strong></small></span>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA2$2" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<small>Section 003 / Class Nbr 14274 / Regular Academic Session</small>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small mt-3" id="win89divMSU_RSLT_NAV_WK_HTMLAREA3$2" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Mon Wed : 12:40 PM-2:30 PM</strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA4$2" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="far fa-calendar-alt"></i><span class="ml-2">08/28/2023 - 12/10/2023</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA9$2" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div></div></td>
<td class="ps_grid-cell">
<div id="win89div$ICField195$2" class="ps_box-group psc_layout">
<div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA6$2" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA7$2" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed mb-4" id="win89divMSU_RSLT_NAV_WK_HTMLAREA8$2" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA5$2" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="fas fa-user"></i><span class="ml-2">To Be Announced</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-link psc_trigger psc_trigger psc_hidden" id="win89divMSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$2"><span id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$span$2" class="ps-link-wrapper" title="Back"><a id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$2" class="ps-link" ptlinktgt="pt_peoplecode" tabindex="-1" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$2');"> </a></span></div></div></td>
</tr>
<tr class="ps_grid-row psc_rowact" id="DESCR100$0_row_3" tabindex="0" data-role="button" onclick="javascript:OnRowAction(this,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$3');cancelBubble(event);">
<td class="ps_grid-cell">
<div id="win89divMSU_RSLT_NAV_WK_GROUPBUTTON$3" class="ps_box-group psc_layout class-main-padding">
<div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft MSU-course-subject-label" id="win89divMSU_RSLT_NAV_WK_HTMLAREA$3" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
CMSE 201: <strong>Computational Modeling and Data Analysis I
<!-- End HTML Area -->
</strong></div><strong>
</strong></div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA1$207$$3" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Lecture</strong> (4.00 units)<span class="text-secondary ml-2"><small><i class="fas fa-circle"></i> <strong>Wait List</strong></small></span>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA2$3" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<small>Section 004 / Class Nbr 14275 / Regular Academic Session</small>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small mt-3" id="win89divMSU_RSLT_NAV_WK_HTMLAREA3$3" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Mon Wed : 3:00 PM-4:50 PM</strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA4$3" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="far fa-calendar-alt"></i><span class="ml-2">08/28/2023 - 12/10/2023</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA9$3" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div></div></td>
<td class="ps_grid-cell">
<div id="win89div$ICField195$3" class="ps_box-group psc_layout">
<div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA6$3" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA7$3" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed mb-4" id="win89divMSU_RSLT_NAV_WK_HTMLAREA8$3" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA5$3" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="fas fa-user"></i><span class="ml-2">To Be Announced</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-link psc_trigger psc_trigger psc_hidden" id="win89divMSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$3"><span id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$span$3" class="ps-link-wrapper" title="Back"><a id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$3" class="ps-link" ptlinktgt="pt_peoplecode" tabindex="-1" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$3');"> </a></span></div></div></td>
</tr>
<tr class="ps_grid-row psc_rowact" id="DESCR100$0_row_4" tabindex="0" data-role="button" onclick="javascript:OnRowAction(this,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$4');cancelBubble(event);">
<td class="ps_grid-cell">
<div id="win89divMSU_RSLT_NAV_WK_GROUPBUTTON$4" class="ps_box-group psc_layout class-main-padding">
<div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft MSU-course-subject-label" id="win89divMSU_RSLT_NAV_WK_HTMLAREA$4" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
CMSE 201: <strong>Computational Modeling and Data Analysis I
<!-- End HTML Area -->
</strong></div><strong>
</strong></div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA1$207$$4" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Lecture</strong> (4.00 units)<span class="text-success ml-2"><small><i class="fas fa-circle"></i> <strong>Open</strong></small></span>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA2$4" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<small>Section 005 / Class Nbr 14276 / Regular Academic Session</small>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small mt-3" id="win89divMSU_RSLT_NAV_WK_HTMLAREA3$4" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Tue Thu : 8:00 AM-9:50 AM</strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA4$4" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="far fa-calendar-alt"></i><span class="ml-2">08/28/2023 - 12/10/2023</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA9$4" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div></div></td>
<td class="ps_grid-cell">
<div id="win89div$ICField195$4" class="ps_box-group psc_layout">
<div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA6$4" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA7$4" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed mb-4" id="win89divMSU_RSLT_NAV_WK_HTMLAREA8$4" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA5$4" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="fas fa-user"></i><span class="ml-2">To Be Announced</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-link psc_trigger psc_trigger psc_hidden" id="win89divMSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$4"><span id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$span$4" class="ps-link-wrapper" title="Back"><a id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$4" class="ps-link" ptlinktgt="pt_peoplecode" tabindex="-1" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$4');"> </a></span></div></div></td>
</tr>
<tr class="ps_grid-row psc_rowact" id="DESCR100$0_row_5" tabindex="0" data-role="button" onclick="javascript:OnRowAction(this,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$5');cancelBubble(event);">
<td class="ps_grid-cell">
<div id="win89divMSU_RSLT_NAV_WK_GROUPBUTTON$5" class="ps_box-group psc_layout class-main-padding">
<div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft MSU-course-subject-label" id="win89divMSU_RSLT_NAV_WK_HTMLAREA$5" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
CMSE 201: <strong>Computational Modeling and Data Analysis I
<!-- End HTML Area -->
</strong></div><strong>
</strong></div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA1$207$$5" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Lecture</strong> (4.00 units)<span class="text-secondary ml-2"><small><i class="fas fa-circle"></i> <strong>Wait List</strong></small></span>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA2$5" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<small>Section 006 / Class Nbr 14277 / Regular Academic Session</small>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small mt-3" id="win89divMSU_RSLT_NAV_WK_HTMLAREA3$5" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Tue Thu : 10:20 AM-12:10 PM</strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA4$5" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="far fa-calendar-alt"></i><span class="ml-2">08/28/2023 - 12/10/2023</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA9$5" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div></div></td>
<td class="ps_grid-cell">
<div id="win89div$ICField195$5" class="ps_box-group psc_layout">
<div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA6$5" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA7$5" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed mb-4" id="win89divMSU_RSLT_NAV_WK_HTMLAREA8$5" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA5$5" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="fas fa-user"></i><span class="ml-2">To Be Announced</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-link psc_trigger psc_trigger psc_hidden" id="win89divMSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$5"><span id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$span$5" class="ps-link-wrapper" title="Back"><a id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$5" class="ps-link" ptlinktgt="pt_peoplecode" tabindex="-1" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$5');"> </a></span></div></div></td>
</tr>
<tr class="ps_grid-row psc_rowact" id="DESCR100$0_row_6" tabindex="0" data-role="button" onclick="javascript:OnRowAction(this,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$6');cancelBubble(event);">
<td class="ps_grid-cell">
<div id="win89divMSU_RSLT_NAV_WK_GROUPBUTTON$6" class="ps_box-group psc_layout class-main-padding">
<div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft MSU-course-subject-label" id="win89divMSU_RSLT_NAV_WK_HTMLAREA$6" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
CMSE 201: <strong>Computational Modeling and Data Analysis I
<!-- End HTML Area -->
</strong></div><strong>
</strong></div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA1$207$$6" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Lecture</strong> (4.00 units)<span class="text-secondary ml-2"><small><i class="fas fa-circle"></i> <strong>Wait List</strong></small></span>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA2$6" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<small>Section 007 / Class Nbr 14278 / Regular Academic Session</small>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small mt-3" id="win89divMSU_RSLT_NAV_WK_HTMLAREA3$6" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Tue Thu : 12:40 PM-2:30 PM</strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA4$6" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="far fa-calendar-alt"></i><span class="ml-2">08/28/2023 - 12/10/2023</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA9$6" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div></div></td>
<td class="ps_grid-cell">
<div id="win89div$ICField195$6" class="ps_box-group psc_layout">
<div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA6$6" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA7$6" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed mb-4" id="win89divMSU_RSLT_NAV_WK_HTMLAREA8$6" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA5$6" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="fas fa-user"></i><span class="ml-2">To Be Announced</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-link psc_trigger psc_trigger psc_hidden" id="win89divMSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$6"><span id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$span$6" class="ps-link-wrapper" title="Back"><a id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$6" class="ps-link" ptlinktgt="pt_peoplecode" tabindex="-1" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$6');"> </a></span></div></div></td>
</tr>
<tr class="ps_grid-row psc_rowact" id="DESCR100$0_row_7" tabindex="0" data-role="button" onclick="javascript:OnRowAction(this,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$7');cancelBubble(event);">
<td class="ps_grid-cell">
<div id="win89divMSU_RSLT_NAV_WK_GROUPBUTTON$7" class="ps_box-group psc_layout class-main-padding">
<div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft MSU-course-subject-label" id="win89divMSU_RSLT_NAV_WK_HTMLAREA$7" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
CMSE 202: <strong>Computational Modeling and Data Analysis II
<!-- End HTML Area -->
</strong></div><strong>
</strong></div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA1$207$$7" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Lecture</strong> (4.00 units)<span class="text-secondary ml-2"><small><i class="fas fa-circle"></i> <strong>Wait List</strong></small></span>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA2$7" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<small>Section 001 / Class Nbr 14279 / Regular Academic Session</small>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small mt-3" id="win89divMSU_RSLT_NAV_WK_HTMLAREA3$7" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Mon Wed : 10:20 AM-12:10 PM</strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA4$7" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="far fa-calendar-alt"></i><span class="ml-2">08/28/2023 - 12/10/2023</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA9$7" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div></div></td>
<td class="ps_grid-cell">
<div id="win89div$ICField195$7" class="ps_box-group psc_layout">
<div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA6$7" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA7$7" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed mb-4" id="win89divMSU_RSLT_NAV_WK_HTMLAREA8$7" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA5$7" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="fas fa-user"></i><span class="ml-2">To Be Announced</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-link psc_trigger psc_trigger psc_hidden" id="win89divMSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$7"><span id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$span$7" class="ps-link-wrapper" title="Back"><a id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$7" class="ps-link" ptlinktgt="pt_peoplecode" tabindex="-1" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$7');"> </a></span></div></div></td>
</tr>
<tr class="ps_grid-row psc_rowact" id="DESCR100$0_row_8" tabindex="0" data-role="button" onclick="javascript:OnRowAction(this,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$8');cancelBubble(event);">
<td class="ps_grid-cell">
<div id="win89divMSU_RSLT_NAV_WK_GROUPBUTTON$8" class="ps_box-group psc_layout class-main-padding">
<div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft MSU-course-subject-label" id="win89divMSU_RSLT_NAV_WK_HTMLAREA$8" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
CMSE 202: <strong>Computational Modeling and Data Analysis II
<!-- End HTML Area -->
</strong></div><strong>
</strong></div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA1$207$$8" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Lecture</strong> (4.00 units)<span class="text-secondary ml-2"><small><i class="fas fa-circle"></i> <strong>Wait List</strong></small></span>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA2$8" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<small>Section 002 / Class Nbr 14280 / Regular Academic Session</small>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small mt-3" id="win89divMSU_RSLT_NAV_WK_HTMLAREA3$8" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Mon Wed : 3:00 PM-4:50 PM</strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA4$8" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="far fa-calendar-alt"></i><span class="ml-2">08/28/2023 - 12/10/2023</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA9$8" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div></div></td>
<td class="ps_grid-cell">
<div id="win89div$ICField195$8" class="ps_box-group psc_layout">
<div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA6$8" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA7$8" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed mb-4" id="win89divMSU_RSLT_NAV_WK_HTMLAREA8$8" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA5$8" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="fas fa-user"></i><span class="ml-2">To Be Announced</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-link psc_trigger psc_trigger psc_hidden" id="win89divMSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$8"><span id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$span$8" class="ps-link-wrapper" title="Back"><a id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$8" class="ps-link" ptlinktgt="pt_peoplecode" tabindex="-1" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$8');"> </a></span></div></div></td>
</tr>
<tr class="ps_grid-row psc_rowact" id="DESCR100$0_row_9" tabindex="0" data-role="button" onclick="javascript:OnRowAction(this,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$9');cancelBubble(event);">
<td class="ps_grid-cell">
<div id="win89divMSU_RSLT_NAV_WK_GROUPBUTTON$9" class="ps_box-group psc_layout class-main-padding">
<div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft MSU-course-subject-label" id="win89divMSU_RSLT_NAV_WK_HTMLAREA$9" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
CMSE 202: <strong>Computational Modeling and Data Analysis II
<!-- End HTML Area -->
</strong></div><strong>
</strong></div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA1$207$$9" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Lecture</strong> (4.00 units)<span class="text-success ml-2"><small><i class="fas fa-circle"></i> <strong>Open</strong></small></span>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA2$9" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<small>Section 003 / Class Nbr 14281 / Regular Academic Session</small>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small mt-3" id="win89divMSU_RSLT_NAV_WK_HTMLAREA3$9" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Tue Thu : 3:00 PM-4:50 PM</strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA4$9" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="far fa-calendar-alt"></i><span class="ml-2">08/28/2023 - 12/10/2023</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA9$9" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div></div></td>
<td class="ps_grid-cell">
<div id="win89div$ICField195$9" class="ps_box-group psc_layout">
<div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA6$9" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA7$9" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed mb-4" id="win89divMSU_RSLT_NAV_WK_HTMLAREA8$9" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA5$9" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="fas fa-user"></i><span class="ml-2">To Be Announced</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-link psc_trigger psc_trigger psc_hidden" id="win89divMSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$9"><span id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$span$9" class="ps-link-wrapper" title="Back"><a id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$9" class="ps-link" ptlinktgt="pt_peoplecode" tabindex="-1" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$9');"> </a></span></div></div></td>
</tr>
<tr class="ps_grid-row psc_rowact" id="DESCR100$0_row_10" tabindex="0" data-role="button" onclick="javascript:OnRowAction(this,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$10');cancelBubble(event);">
<td class="ps_grid-cell">
<div id="win89divMSU_RSLT_NAV_WK_GROUPBUTTON$10" class="ps_box-group psc_layout class-main-padding">
<div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft MSU-course-subject-label" id="win89divMSU_RSLT_NAV_WK_HTMLAREA$10" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
CMSE 314: <strong>Matrix Algebra with Computational Applications<span class="text-secondary ml-2"><small><i class="fas fa-circle"></i> <strong>Cross-Listed</strong></small></span>
<!-- End HTML Area -->
</strong></div><strong>
</strong></div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA1$207$$10" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Lecture</strong> (3.00 units)<span class="text-secondary ml-2"><small><i class="fas fa-circle"></i> <strong>Wait List</strong></small></span>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA2$10" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<small>Section 001 / Class Nbr 15401 / Regular Academic Session</small>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small mt-3" id="win89divMSU_RSLT_NAV_WK_HTMLAREA3$10" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong>Tue Thu : 10:20 AM-11:40 AM</strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA4$10" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="far fa-calendar-alt"></i><span class="ml-2">08/28/2023 - 12/10/2023</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed row d-inline-block col-md-4 small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA9$10" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div></div></td>
<td class="ps_grid-cell">
<div id="win89div$ICField195$10" class="ps_box-group psc_layout">
<div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA6$10" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed" id="win89divMSU_RSLT_NAV_WK_HTMLAREA7$10" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed mb-4" id="win89divMSU_RSLT_NAV_WK_HTMLAREA8$10" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<!-- End HTML Area -->
</div>
</div><div class="ps_box-htmlarea psc_label-suppressed small" id="win89divMSU_RSLT_NAV_WK_HTMLAREA5$10" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
<strong><i class="fas fa-user"></i><span class="ml-2">To Be Announced</span></strong>
<!-- End HTML Area -->
</div>
</div><div class="ps_box-link psc_trigger psc_trigger psc_hidden" id="win89divMSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$10"><span id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$span$10" class="ps-link-wrapper" title="Back"><a id="MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$10" class="ps-link" ptlinktgt="pt_peoplecode" tabindex="-1" onclick="javascript:cancelBubble(event);" href="javascript:submitAction_win89(document.win89,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$10');"> </a></span></div></div></td>
</tr>
<tr class="ps_grid-row psc_rowact" id="DESCR100$0_row_11" tabindex="0" data-role="button" onclick="javascript:OnRowAction(this,'MSU_RSLT_NAV_WK_PTPG_NUI_DRILLOUT$11');cancelBubble(event);">
<td class="ps_grid-cell">
<div id="win89divMSU_RSLT_NAV_WK_GROUPBUTTON$11" class="ps_box-group psc_layout class-main-padding">
<div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft MSU-course-subject-label" id="win89divMSU_RSLT_NAV_WK_HTMLAREA$11" bdirty="1"><div class="ps-htmlarea">
<!-- Begin HTML Area Name Undisclosed -->
CMSE 314: <strong>Matrix Algebra with Computational Applications<span class="text-secondary ml-2"><small><i class="fas fa-circle"></i> <strong>Cross-Listed</strong></small></span>
<!-- End HTML Area -->
</strong></div><strong>
</strong></div><div class="ps_box-htmlarea psc_label-suppressed psc_label-none psc_label-halignleft" id="win89divMSU_RSLT_NAV_WK_HTMLAREA1$207$$11" bdirty="1"><div class="ps-htmlarea">