Advertisement
Guest User

Untitled

a guest
Apr 15th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 99.34 KB | None | 0 0
  1. <body class="parentsBody" style="position: relative; min-height: 100%; top: 0px;">
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8. <!-- Needed to determine access to certain tabs (conferences, letters) -->
  9.  
  10.  
  11. <script type="text/javascript">
  12. function changeStudent(newstudentid)
  13. {
  14. location.href = document.URL.replace('4002485',newstudentid);
  15. }
  16.  
  17. function header_goToTab(newTab1, appendParams)
  18. {
  19. if (appendParams == '')
  20. location.href='/genesis/parents?tab1=' + newTab1 + '&action=form';
  21. else
  22. location.href='/genesis/parents?tab1=' + newTab1 + '&action=form' + '&' + appendParams;
  23. }
  24.  
  25. function initHeader()
  26. {
  27.  
  28. }
  29.  
  30. function confirmDialog(questionToAsk, okFunction, cancelFunction)
  31. {
  32. $( "#_dialog-confirm_" ).dialog({
  33. resizable: false, height:'auto', width:600, modal: true,
  34. title: 'Confirmation',
  35. open: function()
  36. {
  37. $('#_confirmDialogText_').html(questionToAsk);
  38. },
  39. buttons:
  40. {
  41. Ok: function()
  42. {
  43. $( this ).dialog( "close" );
  44. if (okFunction!=null)
  45. okFunction();
  46. },
  47. Cancel: function()
  48. {
  49. $( this ).dialog( "close" );
  50. if (cancelFunction!=null)
  51. cancelFunction();
  52. }
  53. }
  54. });
  55. }
  56.  
  57. function alertDialog(alertText, okCallback)
  58. {
  59. $( "#_dialog-alert_" ).dialog({
  60. resizable: false, height:'auto', width:600, modal: true,
  61. title: 'Information',
  62. open: function()
  63. {
  64. $('#_confirmAlertText_').html(alertText);
  65. },
  66. buttons:
  67. {
  68. Ok: function()
  69. {
  70. $( this ).dialog( "close" );
  71. if (okCallback)
  72. okCallback();
  73. }
  74. }
  75. });
  76. }
  77.  
  78. function promptDialog(questionToAsk, defaultAnswer, okFunction, cancelFunction)
  79. {
  80. if (defaultAnswer==null) defaultAnswer = '';
  81. $( "#_dialog-prompt_" ).dialog({
  82. resizable: false, height:'auto', width:600, modal: true,
  83. title: 'Prompt',
  84. open: function()
  85. {
  86. $('#_confirmPromptText_').html(questionToAsk);
  87. $('#_prompt_dialog_value_').val(defaultAnswer).removeClass('fieldValueChanged').addClass('fieldValue').focus().select();
  88. },
  89. buttons:
  90. {
  91. Ok: function()
  92. {
  93. $( this ).dialog( "close" );
  94. if (okFunction!=null)
  95. {
  96. var __prompt__answer = $('#_prompt_dialog_value_').val();
  97. if (__prompt__answer == null) __prompt__answer = '';
  98. $('#_prompt_dialog_value_').removeClass('fieldValueChanged').addClass('fieldValue');
  99. okFunction(__prompt__answer);
  100. }
  101. },
  102. Cancel: function()
  103. {
  104. $( this ).dialog( "close" );
  105. if (cancelFunction!=null)
  106. cancelFunction();
  107. }
  108. }
  109. });
  110. }
  111.  
  112. function toggleDisclaimer()
  113. {
  114. location.href = document.URL + '&toggleDisclaimer=true';
  115. }
  116.  
  117. var message = '';
  118. if (message.length>0)
  119. {
  120. $(function () {
  121. alertDialog(message);
  122. });
  123. }
  124.  
  125.  
  126. </script>
  127. <!-- Start of Header-->
  128.  
  129.  
  130. <div class="headerModules">
  131. <div style="text-align: left; float:left; white-space: nowrap; ">
  132. <span style="font-size:18pt; font-weight: 600; text-transform: none; text-wrap: none; margin-left:28px;margin-top: 2px; ">
  133. <img src="/genesis/images/genesis-logo405x103.png" alt="Genesis" style="height:40px; margin-left:5px; vertical-align: bottom;margin-top: 4px;margin-right: 7px;" align="left">
  134. <br>
  135.  
  136.  
  137. Student Resources
  138.  
  139. </span>
  140. </div>
  141. <div style="text-align: right; white-space: nowrap">
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162. <span class="headerModuleTabSelected" onclick="header_goToTab('studentdata','studentid=4002485');">
  163. <img src="/genesis/parents/images/buttons/students_white.png" alt="" style="vertical-align: bottom">
  164. Student Data
  165.  
  166.  
  167.  
  168.  
  169. </span>
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188. <span class="headerModuleTab" onclick="header_goToTab('setup','studentid=4002485');">
  189. <img src="/genesis/parents/images/buttons/settings_blue.png" alt="" style="vertical-align: bottom">
  190. Settings
  191.  
  192.  
  193.  
  194.  
  195. </span>
  196.  
  197.  
  198.  
  199.  
  200.  
  201. <span class="headerModuleTab" onclick="location.href='parents?logout=true';">
  202. <img src="/genesis/parents/images/buttons/lock_blue.png" alt="" style="vertical-align: bottom">
  203. Logout
  204. </span>
  205. &nbsp;
  206. </div>
  207. </div>
  208.  
  209.  
  210.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220. <div class="headerCategories">
  221. <div class="headerCategories" style="height:15px;">&nbsp;</div>
  222.  
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236. <span class="headerCategoryTab" onclick="header_goToTab('studentdata&amp;tab2=studentsummary','studentid=4002485');">
  237. Summary
  238. </span>
  239.  
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255. <span class="headerCategoryTab" onclick="header_goToTab('studentdata&amp;tab2=attendance','studentid=4002485');">
  256. Attendance
  257. </span>
  258.  
  259.  
  260.  
  261.  
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268.  
  269.  
  270.  
  271.  
  272.  
  273.  
  274. <span class="headerCategoryTab" onclick="header_goToTab('studentdata&amp;tab2=grading','studentid=4002485');">
  275. Grading
  276. </span>
  277.  
  278.  
  279.  
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294. <span class="headerCategoryTabSelected" onclick="header_goToTab('studentdata&amp;tab2=gradebook','studentid=4002485');">
  295. Gradebook
  296. </span>
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312.  
  313. <span class="headerCategoryTab" onclick="header_goToTab('studentdata&amp;tab2=coursepages','studentid=4002485');">
  314. Course Pages
  315. </span>
  316.  
  317.  
  318.  
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326. </div>
  327.  
  328.  
  329. <div class="headerStudentSelector">
  330. <div class="headerStudentSelector" style="height:11px;">&nbsp;</div>
  331. <table width="100%" cellpadding="0" cellspacing="0">
  332. <tbody><tr>
  333. <td width="50%" style="font-size: 2.4em;font-weight: 300; margin-top: 8px;">
  334.  
  335. </td>
  336.  
  337. <td width="50%">
  338. <label for="fldStudent" style="text-transform: uppercase;">Select Student:</label>
  339. <select name="fldStudent" id="fldStudent" class="headerStudentSelectorInput" onchange="changeStudent(this.value);">
  340.  
  341. <option value="4002485" selected="">St Louis, Blaise Alexander</option>
  342.  
  343. </select>
  344. </td>
  345. </tr>
  346. </tbody></table>
  347. </div>
  348.  
  349.  
  350.  
  351. <br>
  352. <div class="studentTabBar">
  353.  
  354.  
  355.  
  356.  
  357.  
  358.  
  359.  
  360.  
  361.  
  362.  
  363.  
  364.  
  365.  
  366. <span class="studentTabSelected" onclick="header_goToTab('studentdata&amp;tab2=gradebook&amp;tab3=weeklysummary','studentid=4002485');">
  367. Weekly Summary
  368. </span>
  369.  
  370.  
  371.  
  372.  
  373.  
  374.  
  375.  
  376.  
  377.  
  378.  
  379.  
  380.  
  381.  
  382.  
  383.  
  384.  
  385. <span class="studentTab" onclick="header_goToTab('studentdata&amp;tab2=gradebook&amp;tab3=listassignments','studentid=4002485');">
  386. List Assignments
  387. </span>
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400.  
  401.  
  402.  
  403.  
  404. <span class="studentTab" onclick="header_goToTab('studentdata&amp;tab2=gradebook&amp;tab3=coursesummary','studentid=4002485');">
  405. Course Summary
  406. </span>
  407.  
  408.  
  409.  
  410.  
  411.  
  412. </div>
  413.  
  414.  
  415.  
  416.  
  417.  
  418.  
  419.  
  420.  
  421.  
  422.  
  423. <br>
  424.  
  425.  
  426.  
  427.  
  428.  
  429.  
  430.  
  431.  
  432. <br>
  433. <table class="notecard" style=""><tbody><tr><td class="notecardTitle"> </td></tr><tr><td>
  434.  
  435.  
  436.  
  437.  
  438.  
  439.  
  440.  
  441. <p class="sectionTitle">St Louis, Blaise Alexander</p>
  442.  
  443. <form name="frmDate" method="post" target="_top" action="">
  444. <p style="text-align: center">
  445. Week of
  446. <input type="text" class="fieldvalue hasDatepicker" name="fldDate" id="fldDate" size="10" maxlength="10" title="Type T for todays date" onchange="this.className='fieldvaluechanged';changeDate();" value="04/15/2019" onkeyup="if (String.fromCharCode(event.keyCode)=='T' &amp;&amp; $('#fldDate').val() == '' ) $('#fldDate').val('04/15/2019');this.className='fieldValueChanged';$('#fldDate').trigger('change');if (String.fromCharCode(event.keyCode)=='Y' &amp;&amp; $('#fldDate').val() == '' ) $('#fldDate').val('04/14/2019');this.className='fieldValueChanged';$('#fldDate').trigger('change');if (String.fromCharCode(event.keyCode)=='M' &amp;&amp; $('#fldDate').val() == '' ) $('#fldDate').val('04/16/2019');this.className='fieldValueChanged';$('#fldDate').trigger('change');" onblur="null"><img class="ui-datepicker-trigger" src="/genesis/images/calendar.gif" alt="Type T for todays date" title="Type T for todays date" style="cursor: pointer;"><script type="text/javascript">$(document).ready(function() {$( "#fldDate" ).datepicker( {constrainInput: false, changeMonth:true, changeYear:true, showOn: "button", buttonText: "Type T for todays date", buttonImage: "/genesis/images/calendar.gif", buttonImageOnly: true, yearRange: "c-25:c+10"} );
  447. $( ".ui-datepicker-trigger" ).css('cursor','pointer');
  448. });</script>
  449. </p>
  450. </form>
  451.  
  452.  
  453. <p style="text-align: center">
  454. <span style="cursor:pointer;color:#0000dd" onclick="searchRecentlyUpdated();" title="Click to view updated grades">
  455. <img src="/genesis/parents/images/buttons/info.png" alt="" align="absmiddle" title="Click to view updated grades">&nbsp;<u>
  456. Blaise has new grades!</u>
  457. </span>
  458. </p>
  459.  
  460.  
  461. <p style="text-align: center;">
  462. <img src="/genesis/parents/images/buttons/blueAdobe.png" style="width:24px;">
  463. <a target="_blank" href="/genesis/parents?tab1=studentdata&amp;tab2=gradebook&amp;tab3=weeklysummary&amp;studentid=4002485&amp;action=print&amp;dateRange=weekof&amp;date=04/15/2019&amp;mpToView=MP4">
  464. Printable Version of Weekly Assignment List
  465. </a>
  466. </p>
  467.  
  468.  
  469. <table class="list" border="0">
  470.  
  471. <tbody><tr class="listheading">
  472. <td nowrap="" class="cellLeft">Courses</td>
  473. <td nowrap="" class="cellLeft">Teacher</td>
  474.  
  475.  
  476. <td class="cellCenter">
  477. <select name="fldMarkingPeriod" class="fieldvalue" onchange="switchMarkingPeriod(this.value);">
  478.  
  479. <option value="MP1">MP1 </option>
  480.  
  481. <option value="MP2">MP2 </option>
  482.  
  483. <option value="MP3">MP3 </option>
  484.  
  485. <option value="MP4" selected="">MP4 </option>
  486.  
  487. </select>
  488. Avg
  489. </td>
  490.  
  491.  
  492.  
  493. <td class="cellCenter" style="cursor:pointer" onclick="showAssignmentsByDate('4/15/2019');" title="View Assignments Due on 4/15/2019">
  494. <span style="text-decoration: underline">Mon</span><br>
  495. <span style="font-weight:normal">4/15/19</span>
  496.  
  497. </td>
  498.  
  499. <td class="cellCenter" style="cursor:pointer" onclick="showAssignmentsByDate('4/16/2019');" title="View Assignments Due on 4/16/2019">
  500. <span style="text-decoration: underline">Tue</span><br>
  501. <span style="font-weight:normal">4/16/19</span>
  502.  
  503. </td>
  504.  
  505. <td class="cellCenter" style="cursor:pointer" onclick="showAssignmentsByDate('4/17/2019');" title="View Assignments Due on 4/17/2019">
  506. <span style="text-decoration: underline">Wed</span><br>
  507. <span style="font-weight:normal">4/17/19</span>
  508.  
  509. </td>
  510.  
  511. <td class="cellCenter" style="cursor:pointer" onclick="showAssignmentsByDate('4/18/2019');" title="View Assignments Due on 4/18/2019">
  512. <span style="text-decoration: underline">Thu</span><br>
  513. <span style="font-weight:normal">4/18/19</span>
  514.  
  515. </td>
  516.  
  517. <td class="cellCenter" style="cursor:pointer" onclick="showAssignmentsByDate('4/19/2019');" title="View Assignments Due on 4/19/2019">
  518. <span style="text-decoration: underline">Fri</span><br>
  519. <span style="font-weight:normal">4/19/19</span>
  520.  
  521. </td>
  522.  
  523.  
  524. </tr>
  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. <tr class="listrowodd">
  550.  
  551. <td class="cellLeft" nowrap="">
  552.  
  553. <span class="categorytab" title="Display Assignments for LANGUAGE &amp; LITERATURE 6-1 AC2" onclick="showAssignmentsByMPAndCourse('04/15/2019','MS106:2');">
  554. <font color="#0000ff"><u>
  555.  
  556.  
  557. LANGUAGE &amp; LITERATURE 6-1 AC2
  558.  
  559. </u></font>
  560. </span>
  561.  
  562. </td>
  563. <td class="cellLeft" nowrap="">
  564.  
  565.  
  566.  
  567.  
  568.  
  569.  
  570.  
  571.  
  572.  
  573.  
  574. Pennock, Kimberly
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584.  
  585.  
  586. <br>
  587.  
  588. <b>Email:</b>
  589. <a href="mailto:kpennock@chclc.org" style="text-decoration:none"><img src="/genesis/images/labelIcon.png" alt="" border="0" title="Send e-mail to teacher"></a>
  590.  
  591.  
  592.  
  593. </td>
  594.  
  595.  
  596. <td class="cellRight" style="cursor:pointer;" onclick="goToCourseSummary('MS106','2');">
  597.  
  598.  
  599.  
  600.  
  601.  
  602.  
  603.  
  604.  
  605.  
  606.  
  607.  
  608.  
  609.  
  610.  
  611.  
  612.  
  613.  
  614.  
  615. <table cellpadding="0" cellspacing="0" width="100%">
  616. <tbody><tr>
  617.  
  618.  
  619.  
  620.  
  621. <td width="70%" class="cellRight" style="border:0;color:#0066CC;" title="View Course Summary">
  622.  
  623. <div style="text-decoration: underline">
  624.  
  625.  
  626. 69.40%
  627. </div>
  628.  
  629. </td>
  630. <td width="30%" class="cellRight" style="border:0;">
  631.  
  632. </td>
  633.  
  634.  
  635.  
  636.  
  637. </tr>
  638. </tbody></table>
  639. </td>
  640.  
  641.  
  642.  
  643.  
  644.  
  645.  
  646.  
  647. <td class="cellCenter" title="1 Assignments Due" style="cursor:help;font-weight: bold;">
  648.  
  649.  
  650. <a style="color:#0066CC; font-weight: bold;" href="parents?tab1=studentdata&amp;tab2=gradebook&amp;tab3=listassignments&amp;studentid=4002485&amp;action=form&amp;date=04/15/2019&amp;dateRange=weekof&amp;courseAndSection=MS106:2">1</a>
  651.  
  652. </td>
  653.  
  654.  
  655. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  656. 0
  657.  
  658. </td>
  659.  
  660.  
  661. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  662. 0
  663.  
  664. </td>
  665.  
  666.  
  667. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  668. 0
  669.  
  670. </td>
  671.  
  672.  
  673. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  674. 0
  675.  
  676. </td>
  677.  
  678.  
  679.  
  680. </tr>
  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. <tr class="listroweven">
  708.  
  709.  
  710. <td class="cellLeft" nowrap="">
  711.  
  712. <span class="categorytab" title="Display Assignments for 6TH GRADE MATH 6-1" onclick="showAssignmentsByMPAndCourse('04/15/2019','MS206:1');">
  713. <font color="#0000ff"><u>
  714.  
  715.  
  716. 6TH GRADE MATH 6-1
  717.  
  718. </u></font>
  719. </span>
  720.  
  721. </td>
  722. <td class="cellLeft" nowrap="">
  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. Covelli/Forte
  753.  
  754.  
  755.  
  756.  
  757.  
  758.  
  759.  
  760.  
  761.  
  762.  
  763.  
  764.  
  765.  
  766.  
  767.  
  768.  
  769. <br>
  770.  
  771. <b>Email:</b>
  772. <a href="mailto:gcovelli@chclc.org;pforte@chclc.org;" style="text-decoration:none"><img src="/genesis/images/labelIcon.png" alt="" border="0" title="Send e-mail to teacher"></a>
  773.  
  774.  
  775.  
  776. </td>
  777.  
  778.  
  779. <td class="cellRight" style="cursor:pointer;" onclick="goToCourseSummary('MS206','1');">
  780.  
  781.  
  782.  
  783.  
  784.  
  785.  
  786.  
  787.  
  788.  
  789.  
  790.  
  791.  
  792.  
  793.  
  794.  
  795.  
  796.  
  797.  
  798. <table cellpadding="0" cellspacing="0" width="100%">
  799. <tbody><tr>
  800.  
  801.  
  802.  
  803.  
  804. <td width="70%" class="cellRight" style="border:0;color:#0066CC;" title="View Course Summary">
  805.  
  806. <div style="text-decoration: underline">
  807.  
  808.  
  809. 66.50%
  810. </div>
  811.  
  812. </td>
  813. <td width="30%" class="cellRight" style="border:0;">
  814.  
  815. </td>
  816.  
  817.  
  818.  
  819.  
  820. </tr>
  821. </tbody></table>
  822. </td>
  823.  
  824.  
  825.  
  826.  
  827.  
  828.  
  829.  
  830. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  831. 0
  832.  
  833. </td>
  834.  
  835.  
  836. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  837. 0
  838.  
  839. </td>
  840.  
  841.  
  842. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  843. 0
  844.  
  845. </td>
  846.  
  847.  
  848. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  849. 0
  850.  
  851. </td>
  852.  
  853.  
  854. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  855. 0
  856.  
  857. </td>
  858.  
  859.  
  860.  
  861. </tr>
  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. <tr class="listrowodd">
  890.  
  891. <td class="cellLeft" nowrap="">
  892.  
  893. <span class="categorytab" title="Display Assignments for PHYSICAL EDUCATION / HEALTH 6 MYP LC1" onclick="showAssignmentsByMPAndCourse('04/15/2019','MS306IB:4');">
  894. <font color="#0000ff"><u>
  895.  
  896.  
  897. PHYSICAL EDUCATION / HEALTH 6 MYP LC1
  898.  
  899. </u></font>
  900. </span>
  901.  
  902. </td>
  903. <td class="cellLeft" nowrap="">
  904.  
  905.  
  906.  
  907.  
  908.  
  909.  
  910.  
  911.  
  912.  
  913.  
  914. O Connell, Craig
  915.  
  916.  
  917.  
  918.  
  919.  
  920.  
  921.  
  922.  
  923.  
  924.  
  925.  
  926. <br>
  927.  
  928. <b>Email:</b>
  929. <a href="mailto:coconnell@chclc.org" style="text-decoration:none"><img src="/genesis/images/labelIcon.png" alt="" border="0" title="Send e-mail to teacher"></a>
  930.  
  931.  
  932.  
  933. </td>
  934.  
  935.  
  936. <td class="cellRight" style="cursor:pointer;" onclick="goToCourseSummary('MS306IB','4');">
  937.  
  938.  
  939.  
  940.  
  941.  
  942.  
  943.  
  944.  
  945.  
  946.  
  947.  
  948.  
  949.  
  950.  
  951.  
  952.  
  953.  
  954.  
  955. <table cellpadding="0" cellspacing="0" width="100%">
  956. <tbody><tr>
  957.  
  958.  
  959.  
  960.  
  961. <td width="70%" class="cellRight" style="border:0;color:#0066CC;" title="View Course Summary">
  962.  
  963. <div style="text-decoration: underline">
  964.  
  965.  
  966. 100.00%
  967. </div>
  968.  
  969. </td>
  970. <td width="30%" class="cellRight" style="border:0;">
  971.  
  972. </td>
  973.  
  974.  
  975.  
  976.  
  977. </tr>
  978. </tbody></table>
  979. </td>
  980.  
  981.  
  982.  
  983.  
  984.  
  985.  
  986.  
  987. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  988. 0
  989.  
  990. </td>
  991.  
  992.  
  993. <td class="cellCenter" title="1 Assignments Due" style="cursor:help;font-weight: bold;">
  994.  
  995.  
  996. <a style="color:#0066CC; font-weight: bold;" href="parents?tab1=studentdata&amp;tab2=gradebook&amp;tab3=listassignments&amp;studentid=4002485&amp;action=form&amp;date=04/15/2019&amp;dateRange=weekof&amp;courseAndSection=MS306IB:4">1</a>
  997.  
  998. </td>
  999.  
  1000.  
  1001. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1002. 0
  1003.  
  1004. </td>
  1005.  
  1006.  
  1007. <td class="cellCenter" title="1 Assignments Due" style="cursor:help;font-weight: bold;">
  1008.  
  1009.  
  1010. <a style="color:#0066CC; font-weight: bold;" href="parents?tab1=studentdata&amp;tab2=gradebook&amp;tab3=listassignments&amp;studentid=4002485&amp;action=form&amp;date=04/15/2019&amp;dateRange=weekof&amp;courseAndSection=MS306IB:4">1</a>
  1011.  
  1012. </td>
  1013.  
  1014.  
  1015. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1016. 0
  1017.  
  1018. </td>
  1019.  
  1020.  
  1021.  
  1022. </tr>
  1023.  
  1024.  
  1025.  
  1026.  
  1027.  
  1028.  
  1029.  
  1030.  
  1031.  
  1032.  
  1033.  
  1034.  
  1035.  
  1036.  
  1037.  
  1038.  
  1039.  
  1040.  
  1041.  
  1042.  
  1043.  
  1044.  
  1045.  
  1046.  
  1047.  
  1048.  
  1049. <tr class="listroweven">
  1050.  
  1051.  
  1052. <td class="cellLeft" nowrap="">
  1053.  
  1054. <span class="categorytab" title="Display Assignments for SCIENCE 6-1 AC4" onclick="showAssignmentsByMPAndCourse('04/15/2019','MS356:4');">
  1055. <font color="#0000ff"><u>
  1056.  
  1057.  
  1058. SCIENCE 6-1 AC4
  1059.  
  1060. </u></font>
  1061. </span>
  1062.  
  1063. </td>
  1064. <td class="cellLeft" nowrap="">
  1065.  
  1066.  
  1067.  
  1068.  
  1069.  
  1070.  
  1071.  
  1072.  
  1073.  
  1074.  
  1075. Romano, Alexandra
  1076.  
  1077.  
  1078.  
  1079.  
  1080.  
  1081.  
  1082.  
  1083.  
  1084.  
  1085.  
  1086.  
  1087. <br>
  1088.  
  1089. <b>Email:</b>
  1090. <a href="mailto:aromano@chclc.org" style="text-decoration:none"><img src="/genesis/images/labelIcon.png" alt="" border="0" title="Send e-mail to teacher"></a>
  1091.  
  1092.  
  1093.  
  1094. </td>
  1095.  
  1096.  
  1097. <td class="cellRight" style="cursor:pointer;" onclick="goToCourseSummary('MS356','4');">
  1098.  
  1099.  
  1100.  
  1101.  
  1102.  
  1103.  
  1104.  
  1105.  
  1106.  
  1107.  
  1108.  
  1109.  
  1110.  
  1111.  
  1112.  
  1113.  
  1114.  
  1115.  
  1116. <table cellpadding="0" cellspacing="0" width="100%">
  1117. <tbody><tr>
  1118.  
  1119.  
  1120.  
  1121.  
  1122. <td width="70%" class="cellRight" style="border:0;color:#0066CC;" title="View Course Summary">
  1123.  
  1124. <div style="text-decoration: underline">
  1125.  
  1126.  
  1127. 93.60%
  1128. </div>
  1129.  
  1130. </td>
  1131. <td width="30%" class="cellRight" style="border:0;">
  1132.  
  1133. </td>
  1134.  
  1135.  
  1136.  
  1137.  
  1138. </tr>
  1139. </tbody></table>
  1140. </td>
  1141.  
  1142.  
  1143.  
  1144.  
  1145.  
  1146.  
  1147.  
  1148. <td class="cellCenter" title="2 Assignments Due" style="cursor:help;font-weight: bold;">
  1149.  
  1150.  
  1151. <a style="color:#0066CC; font-weight: bold;" href="parents?tab1=studentdata&amp;tab2=gradebook&amp;tab3=listassignments&amp;studentid=4002485&amp;action=form&amp;date=04/15/2019&amp;dateRange=weekof&amp;courseAndSection=MS356:4">2</a>
  1152.  
  1153. </td>
  1154.  
  1155.  
  1156. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1157. 0
  1158.  
  1159. </td>
  1160.  
  1161.  
  1162. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1163. 0
  1164.  
  1165. </td>
  1166.  
  1167.  
  1168. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1169. 0
  1170.  
  1171. </td>
  1172.  
  1173.  
  1174. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1175. 0
  1176.  
  1177. </td>
  1178.  
  1179.  
  1180.  
  1181. </tr>
  1182.  
  1183.  
  1184.  
  1185.  
  1186.  
  1187.  
  1188.  
  1189.  
  1190.  
  1191.  
  1192.  
  1193.  
  1194.  
  1195.  
  1196.  
  1197.  
  1198.  
  1199.  
  1200.  
  1201.  
  1202.  
  1203.  
  1204.  
  1205.  
  1206.  
  1207.  
  1208.  
  1209. <tr class="listrowodd">
  1210.  
  1211. <td class="cellLeft" nowrap="">
  1212.  
  1213. <span class="categorytab" title="Display Assignments for TECH/DESIGN 6 MYP LC1 Q4" onclick="showAssignmentsByMPAndCourse('04/15/2019','MS406IB:4');">
  1214. <font color="#0000ff"><u>
  1215.  
  1216.  
  1217. TECH/DESIGN 6 MYP LC1 Q4
  1218.  
  1219. </u></font>
  1220. </span>
  1221.  
  1222. </td>
  1223. <td class="cellLeft" nowrap="">
  1224.  
  1225.  
  1226.  
  1227.  
  1228.  
  1229.  
  1230.  
  1231.  
  1232.  
  1233.  
  1234. Feeley, Daniel
  1235.  
  1236.  
  1237.  
  1238.  
  1239.  
  1240.  
  1241.  
  1242.  
  1243.  
  1244.  
  1245.  
  1246. <br>
  1247.  
  1248. <b>Email:</b>
  1249. <a href="mailto:dfeeley@chclc.org" style="text-decoration:none"><img src="/genesis/images/labelIcon.png" alt="" border="0" title="Send e-mail to teacher"></a>
  1250.  
  1251.  
  1252.  
  1253. </td>
  1254.  
  1255.  
  1256. <td class="cellRight" style="cursor:pointer;" onclick="goToCourseSummary('MS406IB','4');">
  1257.  
  1258.  
  1259.  
  1260.  
  1261.  
  1262.  
  1263.  
  1264.  
  1265.  
  1266.  
  1267.  
  1268.  
  1269.  
  1270.  
  1271.  
  1272.  
  1273.  
  1274.  
  1275. <table cellpadding="0" cellspacing="0" width="100%">
  1276. <tbody><tr>
  1277.  
  1278.  
  1279.  
  1280.  
  1281. <td width="70%" class="cellRight" style="border:0;color:#0066CC;" title="View Course Summary">
  1282.  
  1283. <div style="text-decoration: underline">
  1284.  
  1285.  
  1286. 0.00%
  1287. </div>
  1288.  
  1289. </td>
  1290. <td width="30%" class="cellRight" style="border:0;">
  1291.  
  1292. </td>
  1293.  
  1294.  
  1295.  
  1296.  
  1297. </tr>
  1298. </tbody></table>
  1299. </td>
  1300.  
  1301.  
  1302.  
  1303.  
  1304.  
  1305.  
  1306.  
  1307. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1308. 0
  1309.  
  1310. </td>
  1311.  
  1312.  
  1313. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1314. 0
  1315.  
  1316. </td>
  1317.  
  1318.  
  1319. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1320. 0
  1321.  
  1322. </td>
  1323.  
  1324.  
  1325. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1326. 0
  1327.  
  1328. </td>
  1329.  
  1330.  
  1331. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1332. 0
  1333.  
  1334. </td>
  1335.  
  1336.  
  1337.  
  1338. </tr>
  1339.  
  1340.  
  1341.  
  1342.  
  1343.  
  1344.  
  1345.  
  1346.  
  1347.  
  1348.  
  1349.  
  1350.  
  1351.  
  1352.  
  1353.  
  1354.  
  1355.  
  1356.  
  1357.  
  1358.  
  1359.  
  1360.  
  1361.  
  1362.  
  1363.  
  1364.  
  1365. <tr class="listroweven">
  1366.  
  1367.  
  1368. <td class="cellLeft" nowrap="">
  1369.  
  1370. <span class="categorytab" title="Display Assignments for STEM 6 LC1 Q3" onclick="showAssignmentsByMPAndCourse('04/15/2019','MS446:3');">
  1371. <font color="#0000ff"><u>
  1372.  
  1373.  
  1374. STEM 6 LC1 Q3
  1375.  
  1376. </u></font>
  1377. </span>
  1378.  
  1379. </td>
  1380. <td class="cellLeft" nowrap="">
  1381.  
  1382.  
  1383.  
  1384.  
  1385.  
  1386.  
  1387.  
  1388. Cieslik, Matthew
  1389.  
  1390.  
  1391.  
  1392.  
  1393.  
  1394.  
  1395.  
  1396.  
  1397.  
  1398.  
  1399.  
  1400.  
  1401. <br>
  1402.  
  1403. <b>Email:</b>
  1404. <a href="mailto:mcieslik@chclc.org" style="text-decoration:none"><img src="/genesis/images/labelIcon.png" alt="" border="0" title="Send e-mail to teacher"></a>
  1405.  
  1406.  
  1407.  
  1408. </td>
  1409.  
  1410.  
  1411. <td class="cellRight" style="cursor:pointer;" onclick="goToCourseSummary('MS446','3');">
  1412.  
  1413.  
  1414.  
  1415.  
  1416.  
  1417.  
  1418.  
  1419.  
  1420.  
  1421.  
  1422.  
  1423.  
  1424.  
  1425.  
  1426.  
  1427.  
  1428.  
  1429.  
  1430. <table cellpadding="0" cellspacing="0" width="100%">
  1431. <tbody><tr>
  1432.  
  1433.  
  1434.  
  1435.  
  1436. <td width="70%" class="cellRight" style="border:0;color:#0066CC;" title="View Course Summary">
  1437.  
  1438. <div style="text-decoration: underline">
  1439.  
  1440.  
  1441. 0.00%
  1442. </div>
  1443.  
  1444. </td>
  1445. <td width="30%" class="cellRight" style="border:0;">
  1446.  
  1447. </td>
  1448.  
  1449.  
  1450.  
  1451.  
  1452. </tr>
  1453. </tbody></table>
  1454. </td>
  1455.  
  1456.  
  1457.  
  1458.  
  1459.  
  1460.  
  1461.  
  1462. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1463. 0
  1464.  
  1465. </td>
  1466.  
  1467.  
  1468. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1469. 0
  1470.  
  1471. </td>
  1472.  
  1473.  
  1474. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1475. 0
  1476.  
  1477. </td>
  1478.  
  1479.  
  1480. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1481. 0
  1482.  
  1483. </td>
  1484.  
  1485.  
  1486. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1487. 0
  1488.  
  1489. </td>
  1490.  
  1491.  
  1492.  
  1493. </tr>
  1494.  
  1495.  
  1496.  
  1497.  
  1498.  
  1499.  
  1500.  
  1501.  
  1502.  
  1503.  
  1504.  
  1505.  
  1506.  
  1507.  
  1508.  
  1509.  
  1510.  
  1511.  
  1512.  
  1513.  
  1514.  
  1515.  
  1516.  
  1517.  
  1518.  
  1519.  
  1520.  
  1521. <tr class="listrowodd">
  1522.  
  1523. <td class="cellLeft" nowrap="">
  1524.  
  1525. <span class="categorytab" title="Display Assignments for INDIVIDUALS &amp; SOCIETIES 6-1 AC1" onclick="showAssignmentsByMPAndCourse('04/15/2019','MS506:1');">
  1526. <font color="#0000ff"><u>
  1527.  
  1528.  
  1529. INDIVIDUALS &amp; SOCIETIES 6-1 AC1
  1530.  
  1531. </u></font>
  1532. </span>
  1533.  
  1534. </td>
  1535. <td class="cellLeft" nowrap="">
  1536.  
  1537.  
  1538.  
  1539.  
  1540.  
  1541.  
  1542.  
  1543.  
  1544.  
  1545.  
  1546. Heller, Jennifer
  1547.  
  1548.  
  1549.  
  1550.  
  1551.  
  1552.  
  1553.  
  1554.  
  1555.  
  1556.  
  1557.  
  1558. <br>
  1559.  
  1560. <b>Email:</b>
  1561. <a href="mailto:jeheller@chclc.org" style="text-decoration:none"><img src="/genesis/images/labelIcon.png" alt="" border="0" title="Send e-mail to teacher"></a>
  1562.  
  1563.  
  1564.  
  1565. </td>
  1566.  
  1567.  
  1568. <td class="cellRight" style="cursor:pointer;" onclick="goToCourseSummary('MS506','1');">
  1569.  
  1570.  
  1571.  
  1572.  
  1573.  
  1574.  
  1575.  
  1576.  
  1577.  
  1578.  
  1579.  
  1580.  
  1581.  
  1582.  
  1583.  
  1584.  
  1585.  
  1586.  
  1587. <table cellpadding="0" cellspacing="0" width="100%">
  1588. <tbody><tr>
  1589.  
  1590.  
  1591.  
  1592.  
  1593. <td width="70%" class="cellRight" style="border:0;color:#0066CC;" title="View Course Summary">
  1594.  
  1595. <div style="text-decoration: underline">
  1596.  
  1597.  
  1598. 100.00%
  1599. </div>
  1600.  
  1601. </td>
  1602. <td width="30%" class="cellRight" style="border:0;">
  1603.  
  1604. </td>
  1605.  
  1606.  
  1607.  
  1608.  
  1609. </tr>
  1610. </tbody></table>
  1611. </td>
  1612.  
  1613.  
  1614.  
  1615.  
  1616.  
  1617.  
  1618.  
  1619. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1620. 0
  1621.  
  1622. </td>
  1623.  
  1624.  
  1625. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1626. 0
  1627.  
  1628. </td>
  1629.  
  1630.  
  1631. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1632. 0
  1633.  
  1634. </td>
  1635.  
  1636.  
  1637. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1638. 0
  1639.  
  1640. </td>
  1641.  
  1642.  
  1643. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1644. 0
  1645.  
  1646. </td>
  1647.  
  1648.  
  1649.  
  1650. </tr>
  1651.  
  1652.  
  1653.  
  1654.  
  1655.  
  1656.  
  1657.  
  1658.  
  1659.  
  1660.  
  1661.  
  1662.  
  1663.  
  1664.  
  1665.  
  1666.  
  1667.  
  1668.  
  1669.  
  1670.  
  1671.  
  1672.  
  1673.  
  1674.  
  1675.  
  1676.  
  1677. <tr class="listroweven">
  1678.  
  1679.  
  1680. <td class="cellLeft" nowrap="">
  1681.  
  1682. <span class="categorytab" title="Display Assignments for FRENCH/LANGUAGE ACQUISITION 6-1 AC3" onclick="showAssignmentsByMPAndCourse('04/15/2019','MS626:3');">
  1683. <font color="#0000ff"><u>
  1684.  
  1685.  
  1686. FRENCH/LANGUAGE ACQUISITION 6-1 AC3
  1687.  
  1688. </u></font>
  1689. </span>
  1690.  
  1691. </td>
  1692. <td class="cellLeft" nowrap="">
  1693.  
  1694.  
  1695.  
  1696.  
  1697.  
  1698.  
  1699.  
  1700.  
  1701.  
  1702.  
  1703. Aboloff, Cheryl
  1704.  
  1705.  
  1706.  
  1707.  
  1708.  
  1709.  
  1710.  
  1711.  
  1712.  
  1713.  
  1714.  
  1715. <br>
  1716.  
  1717. <b>Email:</b>
  1718. <a href="mailto:caboloff@chclc.org" style="text-decoration:none"><img src="/genesis/images/labelIcon.png" alt="" border="0" title="Send e-mail to teacher"></a>
  1719.  
  1720.  
  1721.  
  1722. </td>
  1723.  
  1724.  
  1725. <td class="cellRight" style="cursor:pointer;" onclick="goToCourseSummary('MS626','3');">
  1726.  
  1727.  
  1728.  
  1729.  
  1730.  
  1731.  
  1732.  
  1733.  
  1734.  
  1735.  
  1736.  
  1737.  
  1738.  
  1739.  
  1740.  
  1741.  
  1742.  
  1743.  
  1744. <table cellpadding="0" cellspacing="0" width="100%">
  1745. <tbody><tr>
  1746.  
  1747.  
  1748.  
  1749.  
  1750. <td width="70%" class="cellRight" style="border:0;color:#0066CC;" title="View Course Summary">
  1751.  
  1752. <div style="text-decoration: underline">
  1753.  
  1754.  
  1755. 73.60%
  1756. </div>
  1757.  
  1758. </td>
  1759. <td width="30%" class="cellRight" style="border:0;">
  1760.  
  1761. </td>
  1762.  
  1763.  
  1764.  
  1765.  
  1766. </tr>
  1767. </tbody></table>
  1768. </td>
  1769.  
  1770.  
  1771.  
  1772.  
  1773.  
  1774.  
  1775.  
  1776. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1777. 0
  1778.  
  1779. </td>
  1780.  
  1781.  
  1782. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1783. 0
  1784.  
  1785. </td>
  1786.  
  1787.  
  1788. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1789. 0
  1790.  
  1791. </td>
  1792.  
  1793.  
  1794. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1795. 0
  1796.  
  1797. </td>
  1798.  
  1799.  
  1800. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1801. 0
  1802.  
  1803. </td>
  1804.  
  1805.  
  1806.  
  1807. </tr>
  1808.  
  1809.  
  1810.  
  1811.  
  1812.  
  1813.  
  1814.  
  1815.  
  1816.  
  1817.  
  1818.  
  1819.  
  1820.  
  1821.  
  1822.  
  1823.  
  1824.  
  1825.  
  1826.  
  1827.  
  1828.  
  1829.  
  1830.  
  1831.  
  1832.  
  1833.  
  1834.  
  1835. <tr class="listrowodd">
  1836.  
  1837. <td class="cellLeft" nowrap="">
  1838.  
  1839. <span class="categorytab" title="Display Assignments for ART 6 MYP LC1 Q1" onclick="showAssignmentsByMPAndCourse('04/15/2019','MS686IB:1');">
  1840. <font color="#0000ff"><u>
  1841.  
  1842.  
  1843. ART 6 MYP LC1 Q1
  1844.  
  1845. </u></font>
  1846. </span>
  1847.  
  1848. </td>
  1849. <td class="cellLeft" nowrap="">
  1850.  
  1851.  
  1852.  
  1853.  
  1854.  
  1855.  
  1856.  
  1857. McNab, Melissa
  1858.  
  1859.  
  1860.  
  1861.  
  1862.  
  1863.  
  1864.  
  1865.  
  1866.  
  1867.  
  1868.  
  1869.  
  1870. <br>
  1871.  
  1872. <b>Email:</b>
  1873. <a href="mailto:mmcnab@chclc.org" style="text-decoration:none"><img src="/genesis/images/labelIcon.png" alt="" border="0" title="Send e-mail to teacher"></a>
  1874.  
  1875.  
  1876.  
  1877. </td>
  1878.  
  1879.  
  1880. <td class="cellRight" style="cursor:pointer;" onclick="goToCourseSummary('MS686IB','1');">
  1881.  
  1882.  
  1883.  
  1884.  
  1885.  
  1886.  
  1887.  
  1888.  
  1889.  
  1890.  
  1891.  
  1892.  
  1893.  
  1894.  
  1895.  
  1896.  
  1897.  
  1898.  
  1899. <table cellpadding="0" cellspacing="0" width="100%">
  1900. <tbody><tr>
  1901.  
  1902.  
  1903.  
  1904.  
  1905. <td width="70%" class="cellRight" style="border:0;color:#0066CC;" title="View Course Summary">
  1906.  
  1907. <div style="text-decoration: underline">
  1908.  
  1909.  
  1910. 0.00%
  1911. </div>
  1912.  
  1913. </td>
  1914. <td width="30%" class="cellRight" style="border:0;">
  1915.  
  1916. </td>
  1917.  
  1918.  
  1919.  
  1920.  
  1921. </tr>
  1922. </tbody></table>
  1923. </td>
  1924.  
  1925.  
  1926.  
  1927.  
  1928.  
  1929.  
  1930.  
  1931. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1932. 0
  1933.  
  1934. </td>
  1935.  
  1936.  
  1937. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1938. 0
  1939.  
  1940. </td>
  1941.  
  1942.  
  1943. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1944. 0
  1945.  
  1946. </td>
  1947.  
  1948.  
  1949. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1950. 0
  1951.  
  1952. </td>
  1953.  
  1954.  
  1955. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  1956. 0
  1957.  
  1958. </td>
  1959.  
  1960.  
  1961.  
  1962. </tr>
  1963.  
  1964.  
  1965.  
  1966.  
  1967.  
  1968.  
  1969.  
  1970.  
  1971.  
  1972.  
  1973.  
  1974.  
  1975.  
  1976.  
  1977.  
  1978.  
  1979.  
  1980.  
  1981.  
  1982.  
  1983.  
  1984.  
  1985.  
  1986.  
  1987.  
  1988.  
  1989. <tr class="listroweven">
  1990.  
  1991.  
  1992. <td class="cellLeft" nowrap="">
  1993.  
  1994. <span class="categorytab" title="Display Assignments for MUSIC 6 LC1 Q2" onclick="showAssignmentsByMPAndCourse('04/15/2019','MS806IB:2');">
  1995. <font color="#0000ff"><u>
  1996.  
  1997.  
  1998. MUSIC 6 LC1 Q2
  1999.  
  2000. </u></font>
  2001. </span>
  2002.  
  2003. </td>
  2004. <td class="cellLeft" nowrap="">
  2005.  
  2006.  
  2007.  
  2008.  
  2009.  
  2010.  
  2011.  
  2012. Murtha, John
  2013.  
  2014.  
  2015.  
  2016.  
  2017.  
  2018.  
  2019.  
  2020.  
  2021.  
  2022.  
  2023.  
  2024.  
  2025. <br>
  2026.  
  2027. <b>Email:</b>
  2028. <a href="mailto:jmurtha@chclc.org" style="text-decoration:none"><img src="/genesis/images/labelIcon.png" alt="" border="0" title="Send e-mail to teacher"></a>
  2029.  
  2030.  
  2031.  
  2032. </td>
  2033.  
  2034.  
  2035. <td class="cellRight" style="cursor:pointer;" onclick="goToCourseSummary('MS806IB','2');">
  2036.  
  2037.  
  2038.  
  2039.  
  2040.  
  2041.  
  2042.  
  2043.  
  2044.  
  2045.  
  2046.  
  2047.  
  2048.  
  2049.  
  2050.  
  2051.  
  2052.  
  2053.  
  2054. <table cellpadding="0" cellspacing="0" width="100%">
  2055. <tbody><tr>
  2056.  
  2057.  
  2058.  
  2059.  
  2060. <td width="70%" class="cellRight" style="border:0;color:#0066CC;" title="View Course Summary">
  2061.  
  2062. <div style="text-decoration: underline">
  2063.  
  2064.  
  2065. 0.00%
  2066. </div>
  2067.  
  2068. </td>
  2069. <td width="30%" class="cellRight" style="border:0;">
  2070.  
  2071. </td>
  2072.  
  2073.  
  2074.  
  2075.  
  2076. </tr>
  2077. </tbody></table>
  2078. </td>
  2079.  
  2080.  
  2081.  
  2082.  
  2083.  
  2084.  
  2085.  
  2086. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  2087. 0
  2088.  
  2089. </td>
  2090.  
  2091.  
  2092. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  2093. 0
  2094.  
  2095. </td>
  2096.  
  2097.  
  2098. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  2099. 0
  2100.  
  2101. </td>
  2102.  
  2103.  
  2104. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  2105. 0
  2106.  
  2107. </td>
  2108.  
  2109.  
  2110. <td class="cellCenter" title="0 Assignments Due" style="cursor:help;opacity:0.5;">
  2111. 0
  2112.  
  2113. </td>
  2114.  
  2115.  
  2116.  
  2117. </tr>
  2118.  
  2119.  
  2120.  
  2121.  
  2122.  
  2123.  
  2124.  
  2125.  
  2126.  
  2127. </tbody></table>
  2128.  
  2129. </td></tr></tbody></table>
  2130.  
  2131.  
  2132.  
  2133.  
  2134.  
  2135.  
  2136.  
  2137.  
  2138. <script type="text/javascript">
  2139. function toggleLanguage()
  2140. {
  2141. location.href = document.URL + '&toggleLanguage=true';
  2142. }
  2143.  
  2144. function toggleMobileSite()
  2145. {
  2146. location.href = document.URL + '&toggleMobileSite=true';
  2147. }
  2148. </script>
  2149.  
  2150. <table class="footer" cellpadding="0" cellspacing="0">
  2151. <tbody><tr>
  2152. <td>
  2153. <div id="google_translate_element"><div class="skiptranslate goog-te-gadget" dir="ltr" style=""><div id=":0.targetLanguage" class="goog-te-gadget-simple" style="white-space: nowrap;"><img src="https://www.google.com/images/cleardot.gif" class="goog-te-gadget-icon" alt="" style="background-image: url(&quot;https://translate.googleapis.com/translate_static/img/te_ctrl3.gif&quot;); background-position: -65px 0px;"><span style="vertical-align: middle;"><a aria-haspopup="true" class="goog-te-menu-value" href="javascript:void(0)"><span>Select Language</span><img src="https://www.google.com/images/cleardot.gif" alt="" width="1" height="1"><span style="border-left: 1px solid rgb(187, 187, 187);">&#8203;</span><img src="https://www.google.com/images/cleardot.gif" alt="" width="1" height="1"><span aria-hidden="true" style="color: rgb(118, 118, 118);">▼</span></a></span></div></div></div>
  2154. <script type="text/javascript">
  2155. function googleTranslateElementInit()
  2156. {
  2157. // TODO: If any changes are made to includedLanguages, copy them to parentsFooterMobile.jsp and openRegistration/header.jsp
  2158. new google.translate.TranslateElement({
  2159. pageLanguage: 'en',
  2160. includedLanguages: 'ar,es,it,ja,pt,zh-CN,en,ru,ko,gu,tl,fa,vi',
  2161. layout: google.translate.TranslateElement.InlineLayout.SIMPLE
  2162. }, 'google_translate_element');
  2163. }
  2164. </script>
  2165. <script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
  2166.  
  2167.  
  2168.  
  2169.  
  2170.  
  2171. <a style="margin-left: 10pt;" target="_top" href="javascript:toggleMobileSite();">
  2172. Mobile
  2173. </a>
  2174. </td>
  2175. <td style="text-align: right">
  2176. ©Copyright Genesis Educational Services,Inc.
  2177. </td>
  2178. </tr>
  2179. </tbody></table>
  2180.  
  2181.  
  2182.  
  2183.  
  2184.  
  2185.  
  2186.  
  2187.  
  2188.  
  2189.  
  2190.  
  2191.  
  2192.  
  2193.  
  2194.  
  2195.  
  2196.  
  2197.  
  2198.  
  2199.  
  2200.  
  2201.  
  2202.  
  2203.  
  2204.  
  2205.  
  2206.  
  2207.  
  2208.  
  2209.  
  2210.  
  2211.  
  2212.  
  2213.  
  2214.  
  2215.  
  2216.  
  2217.  
  2218.  
  2219.  
  2220.  
  2221.  
  2222.  
  2223.  
  2224.  
  2225.  
  2226.  
  2227.  
  2228.  
  2229.  
  2230.  
  2231.  
  2232.  
  2233.  
  2234.  
  2235.  
  2236.  
  2237.  
  2238.  
  2239.  
  2240.  
  2241.  
  2242.  
  2243.  
  2244.  
  2245.  
  2246.  
  2247.  
  2248.  
  2249.  
  2250.  
  2251.  
  2252.  
  2253.  
  2254.  
  2255.  
  2256.  
  2257.  
  2258.  
  2259.  
  2260.  
  2261.  
  2262.  
  2263.  
  2264.  
  2265.  
  2266.  
  2267.  
  2268.  
  2269.  
  2270.  
  2271.  
  2272.  
  2273.  
  2274.  
  2275.  
  2276.  
  2277.  
  2278.  
  2279.  
  2280.  
  2281.  
  2282.  
  2283.  
  2284.  
  2285.  
  2286.  
  2287.  
  2288.  
  2289.  
  2290.  
  2291.  
  2292.  
  2293.  
  2294.  
  2295.  
  2296.  
  2297.  
  2298.  
  2299.  
  2300.  
  2301.  
  2302.  
  2303.  
  2304.  
  2305.  
  2306.  
  2307.  
  2308.  
  2309.  
  2310.  
  2311.  
  2312.  
  2313.  
  2314.  
  2315.  
  2316.  
  2317.  
  2318.  
  2319.  
  2320.  
  2321.  
  2322.  
  2323.  
  2324.  
  2325.  
  2326.  
  2327.  
  2328.  
  2329.  
  2330.  
  2331.  
  2332.  
  2333.  
  2334. <div style="display:none">
  2335. <div id="_dialog-confirm_" title="" style="background-color:#FFFFF1">
  2336. <table>
  2337. <tbody><tr>
  2338. <td> <img src="/genesis/images/help2_48.png"> </td>
  2339. <td>
  2340. <div id="_confirmDialogText_">
  2341.  
  2342. </div>
  2343. </td>
  2344. </tr>
  2345. </tbody></table>
  2346. </div>
  2347. <div id="_dialog-prompt_" title="" style="background-color:#FFFFF1">
  2348. <table>
  2349. <tbody><tr>
  2350. <td> <img src="/genesis/images/help2_48.png"> </td>
  2351. <td>
  2352. <div id="_confirmPromptText_">
  2353.  
  2354. </div>
  2355. <f2:text nameid="_prompt_dialog_value_" size="50" maxlength="255" value="">
  2356. </f2:text></td>
  2357. </tr>
  2358. </tbody></table>
  2359. </div>
  2360. <div id="_dialog-alert_" title="" style="background-color:#FFFFF1">
  2361. <table>
  2362. <tbody><tr>
  2363. <td> <img src="/genesis/images/info_48.png"> </td>
  2364. <td>
  2365. <div id="_confirmAlertText_">
  2366.  
  2367. </div>
  2368. </td>
  2369. </tr>
  2370. </tbody></table>
  2371. </div>
  2372. </div>
  2373.  
  2374.  
  2375. <div id="goog-gt-tt" class="skiptranslate" dir="ltr"><div style="padding: 8px;"><div><div class="logo"><img src="https://www.gstatic.com/images/branding/product/1x/translate_24dp.png" width="20" height="20" alt="Google Translate"></div></div></div><div class="top" style="padding: 8px; float: left; width: 100%;"><h1 class="title gray">Original text</h1></div><div class="middle" style="padding: 8px;"><div class="original-text"></div></div><div class="bottom" style="padding: 8px;"><div class="activity-links"><span class="activity-link">Contribute a better translation</span><span class="activity-link"></span></div><div class="started-activity-container"><hr style="color: #CCC; background-color: #CCC; height: 1px; border: none;"><div class="activity-root"></div></div></div><div class="status-message" style="display: none;"></div></div><div id="ui-datepicker-div" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div><div class="goog-te-spinner-pos"><div class="goog-te-spinner-animation"><svg xmlns="http://www.w3.org/2000/svg" class="goog-te-spinner" width="96px" height="96px" viewBox="0 0 66 66"><circle class="goog-te-spinner-path" fill="none" stroke-width="6" stroke-linecap="round" cx="33" cy="33" r="30"></circle></svg></div></div><iframe frameborder="0" class="goog-te-menu-frame skiptranslate" title="Language Translate Widget" style="visibility: visible; box-sizing: content-box; width: 233px; height: 263px; display: none;"></iframe></body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement