Ares 4.6 Web Page Changes - Archival Article
The following changes have been made from the 4.5 to 4.6 default web pages.
Many of the changes made have been for compliance with Section 508 and WCAG 2.0 (level AA) guidelines for accessibility. You can also see Ares Accessibility Web Pages for a complete list of these accessibility changes.
Due to a large number of changes made in this release, we recommend starting with the default 4.6 web pages and adding any customizations after.
New Pages in 4.6
The following pages and files are new in Ares 4.6. These files need to be added to your Ares web folder (default is C:\inetpub\wwwroot\Ares). You can download these new pages from your Ares Updates folder (default is C:\Ares\Updates\WebPages) or from the Ares 4.6 Downloads page.
Place files in Ares web folder:
- IOpenUrlMenu.html
- include_studentBatchMenu.html
- include_instructorBatchMenu.html
- include_head.html
- ICourseStudentList.html
Place files in js folder (default location C:\inetpub\wwwroot\Ares\js):
- ckeditor folder
- aresTableFilter.js
- aresBatchEditing.js
- fadeEffect.js
Deleted Pages in 4.6
The following pages and files are no longer used with the default Ares web pages and can be removed from your Ares web folder.
-
ICourseChat.html
-
UCourseChat.html
-
include_jquery-ui.html
-
chatstyle.css in the css folder
-
chat folder in the js folder
-
FCKeditor folder in the js folder
-
tiny_mce folder in the js folder
-
fat.js in the js folder
-
prototype.js in the js folder
-
scriptaculous.js in the js folder
DLL Table Changes
The way the web DLL generates tables has changed. Tables no longer allow row clicks, and specific links in the left-most "action" column must be clicked in order to perform any actions. This allows users that depend on keyboard navigation or screen readers to better understand what action they are performing from a given table row. Some style rules will need to be updated to properly render the new "action" column and the table captions, which replace the old way of adding a table heading. Changes were made on the following pages:
- main.css
Add the following code:
```
table caption {background: #000066;color: #fff;padding: 5px;font-weight: bold;font-size: 110%;letter-spacing: 0.2em;text-align: left;
}
```
Replace this:
```
.instructor-table a, .instructor-table-nohover a {text-decoration:none;
}
```
with this:
```
.instructor-table a, .instructor-table-nohover a {text-decoration: underline;
}
```
Replace this:
```
.xlist-table a {text-decoration:none;
}
```
with this:
```
.xlist-table a {text-decoration: underline;
}
```
Replace this:
```
.student-table a, .student-table-nohover a {text-decoration:none;
}
```
with this:
```
.student-table a, .student-table-nohover a {text-decoration: underline;
}
```
Replace this:
```
.default-table a {text-decoration:none;
}
```
with this:
```
.default-table a {text-decoration: underline;
}
```
Because this is a change in how the DLL itself generates the tables, all sites that update to Ares 4.6 will see this change in behavior.
include_head Page
The include_head.html page was added to the default Ares web pages to consolidate styling code. Changes were made on the following pages to reference this file:
- AboutAres.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- GSearchResults.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" /><!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- IActiveCourseList.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script type="text/javascript" src="js/prototype.js"></script><script type="text/javascript" src="js/scriptaculous.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- IApplySharedList.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- ViewItemNotificationsDetail.html
Replace this:
```
<head><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" /><!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
</head>
```
with this:
```
<head>
<#INCLUDE filename="include_head.html">
</head>
```
- ViewNotifications.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]--><script type="text/javascript" src="js/aresajax.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- ViewNotificationsDetail.html
Replace this:
```
<head><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- IItemDelete.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- IItemInfo.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]--><script type="text/javascript" src="js/aresajax.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- IItemUsage.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- UCourseDelete.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]--><script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- UCourseInfo.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/tagCloud.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- UCourseMessageBoard.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]--><script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- UCourseMessageBoardNewReply.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script><script language="javascript" src="js/tiny_mce/tiny_mce.js"></script><script language="javascript" type="text/javascript"> tinyMCE.init({ mode : "textareas", theme : "simple", plugins : "table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,zoom,flash,searchreplace,print,contextmenu", theme_advanced_buttons1_add : "fontselect,fontsizeselect", theme_advanced_buttons2_add : "separator,insertdate,inserttime,preview,zoom,separator,forecolor,backcolor", theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator", theme_advanced_buttons3_add_before : "tablecontrols,separator", theme_advanced_buttons3_add : "emotions,iespell,flash,advhr,separator,print", theme_advanced_toolbar_location : "top", theme_advanced_toolbar_align : "left", plugin_insertdate_dateFormat : "%m/%d/%Y", plugin_insertdate_timeFormat : "%I:%M %p" });</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script><script type="text/javascript" src="js/ckeditor/ckeditor.js"></script>
</head>
```
- UCourseMessageBoardNewThread.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script><script language="javascript" src="js/tiny_mce/tiny_mce.js"></script><script language="javascript" type="text/javascript"> tinyMCE.init({ mode : "textareas", theme : "simple", plugins : "table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,zoom,flash,searchreplace,print,contextmenu", theme_advanced_buttons1_add : "fontselect,fontsizeselect", theme_advanced_buttons2_add : "separator,insertdate,inserttime,preview,zoom,separator,forecolor,backcolor", theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator", theme_advanced_buttons3_add_before : "tablecontrols,separator", theme_advanced_buttons3_add : "emotions,iespell,flash,advhr,separator,print", theme_advanced_toolbar_location : "top", theme_advanced_toolbar_align : "left", plugin_insertdate_dateFormat : "%m/%d/%Y", plugin_insertdate_timeFormat : "%I:%M %p" });</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script><script type="text/javascript" src="js/ckeditor/ckeditor.js"></script>
</head>
```
- UCourseMessageBoardThread.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- UCoursePassword.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/fat.js"></script><script type="text/javascript" src="js/aresajax.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- UCourseResults.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script type="text/javascript" src="js/prototype.js"></script><script type="text/javascript" src="js/scriptaculous.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- UCourseTags.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/tagCloud.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- UHome.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/tagCloud.css"/><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]--><script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script type="text/javascript" src="js/prototype.js"></script><script type="text/javascript" src="js/scriptaculous.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- UHotList.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script type="text/javascript" src="js/prototype.js"></script><script type="text/javascript" src="js/scriptaculous.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- UItemInfo.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- USearch.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script type="text/javascript" src="js/prototype.js"></script><script type="text/javascript" src="js/scriptaculous.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- USearchCourse.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script type="text/javascript" src="js/prototype.js"></script><script type="text/javascript" src="js/scriptaculous.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- USearchResults.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- ICourseImportItems.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/tagCloud.css"/><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- ICourseImportItemsToSharedList.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/tagCloud.css"/><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- ICourseMessageBoard.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- ICourseMessageBoardNewReply.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script><script language="javascript" src="js/tiny_mce/tiny_mce.js"></script><script language="javascript" type="text/javascript"> tinyMCE.init({ mode : "textareas", theme : "simple", plugins : "table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,zoom,flash,searchreplace,print,contextmenu", theme_advanced_buttons1_add : "fontselect,fontsizeselect", theme_advanced_buttons2_add : "separator,insertdate,inserttime,preview,zoom,separator,forecolor,backcolor", theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator", theme_advanced_buttons3_add_before : "tablecontrols,separator", theme_advanced_buttons3_add : "emotions,iespell,flash,advhr,separator,print", theme_advanced_toolbar_location : "top", theme_advanced_toolbar_align : "left", plugin_insertdate_dateFormat : "%m/%d/%Y", plugin_insertdate_timeFormat : "%I:%M %p" });</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script><script type="text/javascript" src="js/ckeditor/ckeditor.js"></script>
</head>
```
- ICourseMessageBoardNewThread.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" /><!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script><script language="javascript" src="js/tiny_mce/tiny_mce.js"></script><script language="javascript" type="text/javascript"> tinyMCE.init({ mode : "textareas", theme : "simple", plugins : "table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,zoom,flash,searchreplace,print,contextmenu", theme_advanced_buttons1_add : "fontselect,fontsizeselect", theme_advanced_buttons2_add : "separator,insertdate,inserttime,preview,zoom,separator,forecolor,backcolor", theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator", theme_advanced_buttons3_add_before : "tablecontrols,separator", theme_advanced_buttons3_add : "emotions,iespell,flash,advhr,separator,print", theme_advanced_toolbar_location : "top", theme_advanced_toolbar_align : "left", plugin_insertdate_dateFormat : "%m/%d/%Y", plugin_insertdate_timeFormat : "%I:%M %p" });</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script><script type="text/javascript" src="js/ckeditor/ckeditor.js"></script>
</head>
```
- ICourseMessageBoardThread.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- ICourseProxyUsers.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- ICourseTags.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/tagCloud.css"/><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- ICourseUsage.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- IHome.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script type="text/javascript" src="js/prototype.js"></script><script type="text/javascript" src="js/scriptaculous.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- IInstructorSharedLists.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script type="text/javascript" src="js/prototype.js"></script><script type="text/javascript" src="js/scriptaculous.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- ICourseInfo.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/tagCloud.css"/><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><#INCLUDE filename="include_jquery-ui.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';EnableSortPersistence("ItemTable");</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';EnableSortPersistence("ItemTable");</script>
</head>
```
- ICourseEdit.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- ICourseCrossList.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- ICourseCreate.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- ICourseClone.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><script language="javascript" src="js/aresajax.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- ICourseAuthUsers.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- IUploadForm.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script type="text/javascript" src="js/prototype.js"></script><script type="text/javascript" src="js/scriptaculous.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- IUploadSharedListItemForm.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script type="text/javascript" src="js/prototype.js"></script><script type="text/javascript" src="js/scriptaculous.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- NewPassword.html
Replace this:
```
<head><script type="text/javascript" src="js/fat.js"></script><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- NewAuthRegistration.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ChangePassword.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ChangeUserInformation.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]--><script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ForgotPassword.html
Replace this:
```
<head><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/fat.js"/></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- GCreateAccount.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- GLogon.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
</head>
```
with this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
</head>
```
- GLogon2.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- IPreviousCourseList.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" /><!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script type="text/javascript" src="js/prototype.js"></script><script type="text/javascript" src="js/scriptaculous.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- IProxyUsers.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- ISearchResults.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- ISharedListCreate.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- ISharedListEdit.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- ISharedListInfo.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/tagCloud.css"/><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><#INCLUDE filename="include_jquery-ui.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';EnableSortPersistence("ItemTable"); $(document).ready(function() { $('.break-shared-list-link').bind('click', function() { return confirm('Are you sure you want to disassociate this course from this shared list? This will not remove any course items created from this shared list.'); });}); </script>
</head>
```
with this:
```
<head>
<#INCLUDE filename="include_head.html">
<script>var sessionid = '<#PARAM name='name="SessionID"/'>';EnableSortPersistence("ItemTable"); $(document).ready(function() { $('.break-shared-list-link').bind('click', function() { return confirm('Are you sure you want to disassociate this course from this shared list? This will not remove any course items created from this shared list.'); });});
</script>
</head>
```
- ISharedListItemInfo.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><#INCLUDE filename="include_jquery-ui.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='name="SessionID"/'>';</script>
</head>
```
- IRFArticle.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- IRFAudio.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- IRFBook.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- IRFBookChapter.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- IRFCreate.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/>
<!--For Calendar--><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script>
<!--For Rich Text Editor--><script type="text/javascript" src="js/FCKeditor/fckeditor.js"></script><script type="text/javascript"><!--
function ReplaceAllTextareas() {
// replace all of the textareas
var itemTextArea = document.getElementById("ItemText");
var oFCKeditor = new FCKeditor( itemTextArea.name ) ;
oFCKeditor.BasePath = "js/FCKeditor/" ;
oFCKeditor.ReplaceTextarea();
} function focusIframeOnTab(caller, tabTargetId, callEvent) { // If keypress TAB and not SHIFT+TAB if(callEvent.keyCode == 9 && !callEvent.shiftKey) document.getElementById(tabTargetId).contentWindow.focus(); }
// -->
</script>
<link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script type="text/javascript" src="js/ckeditor/ckeditor.js"></script><script type="text/javascript"> <!-- function focusIframeOnTab(caller, tabTargetId, callEvent) { // If keypress TAB and not SHIFT+TAB if(callEvent.keyCode == 9 && !callEvent.shiftKey) document.getElementById(tabTargetId).contentWindow.focus(); } // --></script><script> var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- IRFEditArticle.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- IRFEditAudio.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- IRFEditBook.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- IRFEditBookChapter.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- IRFEditCreate.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><script type="text/javascript" src="js/FCKeditor/fckeditor.js"></script><script type="text/javascript">
function ReplaceAllTextareas() {
// replace all of the textareas
var itemTextArea = document.getElementById("ItemText"); if (!$(itemTextArea).attr('disabled')) { var oFCKeditor = new FCKeditor( itemTextArea.name ) ; oFCKeditor.BasePath = "js/FCKeditor/" ; oFCKeditor.ReplaceTextarea(); }
} function focusIframeOnTab(caller, tabTargetId, callEvent) { // If keypress TAB and not SHIFT+TAB if(callEvent.keyCode == 9 && !callEvent.shiftKey) document.getElementById(tabTargetId).contentWindow.focus(); }</script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script type="text/javascript" src="js/ckeditor/ckeditor.js"></script><script type="text/javascript"> function focusIframeOnTab(caller, tabTargetId, callEvent) { // If keypress TAB and not SHIFT+TAB if(callEvent.keyCode == 9 && !callEvent.shiftKey) document.getElementById(tabTargetId).contentWindow.focus(); }</script><script> var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- IRFEditInstructorUpload.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- IRFEditVideo.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- IRFInstructorUpload.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]--><script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- IRFMenu.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- IRFOpenURLArticle.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- IRFOpenURLBook.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- IRFVideo.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ISLRFArticle.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ISLRFAudio.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ISLRFBook.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ISLRFBookChapter.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ISLRFCreate.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/>
<!--For Calendar--><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script>
<!--For Rich Text Editor--><script type="text/javascript" src="js/FCKeditor/fckeditor.js"></script><script type="text/javascript"><!--function ReplaceAllTextareas() { // replace all of the textareas var itemTextArea = document.getElementById("ItemText"); var oFCKeditor = new FCKeditor( itemTextArea.name ) ; oFCKeditor.BasePath = "js/FCKeditor/" ; oFCKeditor.ReplaceTextarea();}function focusIframeOnTab(caller, tabTargetId, callEvent){ // If keypress TAB and not SHIFT+TAB if(callEvent.keyCode == 9 && !callEvent.shiftKey) document.getElementById(tabTargetId).contentWindow.focus();}
// --></script>
<link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" /><script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script type="text/javascript" src="js/ckeditor/ckeditor.js"></script><script type="text/javascript"> <!-- function focusIframeOnTab(caller, tabTargetId, callEvent) { // If keypress TAB and not SHIFT+TAB if(callEvent.keyCode == 9 && !callEvent.shiftKey) document.getElementById(tabTargetId).contentWindow.focus(); } // --></script><script> var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- ISLRFEditArticle.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><#INCLUDE filename="include_jquery-ui.html">
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ISLRFEditAudio.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><#INCLUDE filename="include_jquery-ui.html">
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ISLRFEditBook.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><#INCLUDE filename="include_jquery-ui.html">
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ISLRFEditBookChapter.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><#INCLUDE filename="include_jquery-ui.html">
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ISLRFEditCreate.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><script type="text/javascript" src="js/FCKeditor/fckeditor.js"></script><script type="text/javascript">
<!--
function ReplaceAllTextareas() {
// replace all of the textareas
var itemTextArea = document.getElementById("ItemText");
var oFCKeditor = new FCKeditor( itemTextArea.name ) ;
oFCKeditor.BasePath = "js/FCKeditor/" ;
oFCKeditor.ReplaceTextarea();
}function focusIframeOnTab(caller, tabTargetId, callEvent){ // If keypress TAB and not SHIFT+TAB if(callEvent.keyCode == 9 && !callEvent.shiftKey) document.getElementById(tabTargetId).contentWindow.focus();}
// --></script>
<link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><#INCLUDE filename="include_jquery-ui.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script type="text/javascript" src="js/ckeditor/ckeditor.js"></script><script type="text/javascript"> <!-- function focusIframeOnTab(caller, tabTargetId, callEvent) { // If keypress TAB and not SHIFT+TAB if(callEvent.keyCode == 9 && !callEvent.shiftKey) document.getElementById(tabTargetId).contentWindow.focus(); } // --></script><script> var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- ISLRFEditInstructorUpload.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><#INCLUDE filename="include_jquery-ui.html">
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ISLRFEditVideo.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><#INCLUDE filename="include_jquery-ui.html">
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ISLRFInstructorUpload.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ISLRFMenu.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html"><script>var sessionid = '<#PARAM name='SessionID'>';</script>
</head>
```
- ISLRFOpenURLArticle.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ISLRFOpenURLBook.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
- ISLRFVideo.html
Replace this:
```
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="favicon.ico" /><link rel=stylesheet href="css/xc2_default.css" type="text/css"/><script language="javascript" src="js/xc2_default.js"></script><script language="javascript" src="js/xc2_inpage.js"></script><script language="javascript" src="js/arescal.js"></script><link rel="stylesheet" type="text/css" href="css/fat.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/main.css" media="screen" /><link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6_or_less.css" /><![endif]-->
<script type="text/javascript" src="js/aresajax.js"></script><script type="text/javascript" src="js/fat.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
</head>
```
with this:
```
<head><#INCLUDE filename="include_head.html">
</head>
```
Validation Fixes
All fields that users can edit on the web pages now have a consistent pattern for validation code. This change was made on the following pages:
- ICourseEdit.html
Replace this:
```
<!--
<label for="ExternalCourseId"><b><#ERROR>External Course ID</b><input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#COURSE>"><br />
</label>
-->
<label for="CourseName"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Course Name</span></b><input id="CourseName" name="CourseName" type="text" size="40" class="f-name" value="<#COURSE>"><br />
</label>
<label for="CourseNumber"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Course Number</span><br/><span class="note">e.g. MAT-101</span></b><input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#COURSE>"><br />
</label>
<label for="CourseCode"><#ERROR><b><span class="<#VALIDATION>">Section Number/Course Number</span></b><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#COURSE>"><br />
</label>
<label for="Department"><#ERROR><b><span class="<#VALIDATION>"><span class="req">*</span>Department</span></b><#OPTION>" Size="1"><br/>
</label>
<label for="CourseSemester"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Course Semester</span></b><#COURSE><br/>
</label>
<label for="CourseURL"><#ERROR><b><span class="<#VALIDATION>">Course URL</span></b><input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#COURSE>"/><br />
</label>
<label for="CourseEnrollment"><#ERROR><b><span class="<#VALIDATION>">Course Enrollment</span></b><input id="CourseEnrollment" name="CourseEnrollment" type="text" size="20" class="f-name" value="<#COURSE>"/><br />
</label>
<label for="CourseDescription"><#ERROR><b><span class="<#VALIDATION>">Course Description</span></b><textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5"><#COURSE></textarea><br />
</label>
<label for="CourseInstructor"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Course Instructor</span><br/><span class="note">(Last Name, First Name)</span></b><input type="text"" class="f-name" name="CourseInstructor" value="<#COURSE>"/>
</label>
<label for="CoursePassword"><#ERROR><b><span class="<#VALIDATION>">Course Password</span></b> <input type="text"" class="f-name" name="CoursePassword" value="<#COURSE>"/>
</label>
```
with this:
```
<label for="CourseName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Name</span></strong><input id="CourseName" name="CourseName" type="text" size="40" class="f-name" value="<#PARAM name='CourseName'>"><br />
</label>
<!--
<label for="ExternalCourseId"><#ERROR><strong> <span class="<#VALIDATION>">External Course ID</span></strong><input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name='name="ExternalCourseID"/'>"><br />
</label>
-->
<label for="CourseNumber"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Number</span><br/> <span class="note">e.g. MAT-101</span></strong><input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#PARAM name='CourseNumber'>"><br />
</label>
<label for="CourseCode"><#ERROR><strong> <span class="<#VALIDATION>">Course Code</span></strong><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>"><br />
</label>
<label for="Department"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Department</span></strong><#OPTION>" Size="1"><br/>
</label>
<label for="Semester"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Semester</span></strong><#OPTION>" class="f-name"><br/>
</label>
<label for="CourseURL"><#ERROR><strong> <span class="<#VALIDATION>">Course URL</span></strong><input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#PARAM name='CourseURL'>"/><br />
</label>
<label for="CourseEnrollment"><#ERROR><strong> <span class="<#VALIDATION>">Course Enrollment</span></strong><input id="CourseEnrollment" name="CourseEnrollment" type="text" size="20" class="f-name" value="<#PARAM name='CourseEnrollment'>"/><br />
</label>
<label for="CourseDescription"><#ERROR><strong> <span class="<#VALIDATION>">Course Description</span></strong><input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name='name="CourseDescription"/'>"/><br />
</label>
<label for="CourseInstructor"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Instructor</span><br/> <span class="note">(Last Name, First Name)</span></strong><input type="text" class="f-name" id="CourseInstructor" name="CourseInstructor" value="<#PARAM name='CourseInstructor'>"/>
</label>
<label for="CoursePassword"><#ERROR><strong> <span class="<#VALIDATION>">Course Password</span></strong><input type="text" id="CoursePassword" class="f-name" name="CoursePassword" value="<#PARAM name='CoursePassword'>"/>
</label>
```
- ICourseCrossList.html
Replace this:
```
<label for="Department"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Cross Listed Department</span></b><#OPTION>" Size="1"><br/>
</label>
<label for="CourseNumber"><#ERROR><b><span class="req">*</span>Cross Listed Course Number<br /><span class="note">e.g. MAT-101</span></b><input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#PARAM name='CourseNumber'>"><br />
</label>
<label for="CourseName"><#ERROR><b>Cross Listed Course Name</b><input id="CourseName" name="CourseName" type="text" size="40" class="f-name" value="<#PARAM name='CourseName'>"><br />
</label>
<label for="CourseCode"><#ERROR><b>Cross Listed Section Number/Course Number</b><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>"><br />
</label>
```
with this:
```
<label for="Department"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Cross Listed Department</span></strong><#OPTION>" Size="1"><br/>
</label>
<label for="CourseNumber"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Cross Listed Course Number</span><br /> <span class="note">e.g. MAT-101</span></strong><input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#PARAM name='CourseNumber'>" /><br />
</label>
<label for="CourseName"><#ERROR><strong> <span class="<#VALIDATION>">Cross Listed Course Name</span></strong><input id="CourseName" name="CourseName" type="text" size="40" class="f-name" value="<#PARAM name='CourseName'>" /><br />
</label>
<label for="CourseCode"><#ERROR><strong> <span class="<#VALIDATION>">Cross Listed Course Code</span></strong><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>" /><br />
</label>
```
- ICourseCreate.html
Replace this:
```
<!--
<label for="ExternalCourseId"><b><#ERROR>External Course ID</b><input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name='name="ExternalCourseID"/'>"><br />
</label>
-->
<label for="CourseName"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Course Name</span></b><input id="CourseName" name="CourseName" type="text" size="40" class="f-name" value="<#PARAM name='CourseName'>"><br />
</label>
<label for="CourseNumber"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Course Number</span><br /><span class="note">e.g. MAT-101</span></b><input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#PARAM name='CourseNumber'>"><br />
</label>
<label for="CourseCode"><#ERROR><b><span class="<#VALIDATION>">Section Number/Course Number</span></b><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>"><br />
</label>
<#OPTION><#ERROR><b>Instructor’s Username</b>" class="f-name" footerText="<br /></label>"/>
<label for="CourseInstructor"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Instructor</span><br/><span class="note">(Last Name, First Name)</span></b><input id="CourseInstructor" name="CourseInstructor" type="text" size="40" class="f-name" value="<#PARAM name='CourseInstructor'>"><br />
</label>
<label for="Department"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Department</span></b><#OPTION><br/>
</label>
<label for="CourseSemester"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Course Semester</span></b><#OPTION><br/>
</label>
<label for="CourseURL"><#ERROR><b><span class="<#VALIDATION>">Course URL</span></b><input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#PARAM name='CourseURL'>"/><br />
</label>
<label for="CourseEnrollment"><#ERROR><b><span class="<#VALIDATION>">Course Enrollment</span></b><input id="CourseEnrollment" name="CourseEnrollment" type="text" size="20" class="f-name" value="<#PARAM name='CourseEnrollment'>"/><br />
</label>
<label for="CourseDescription"><#ERROR><b><span class="<#VALIDATION>">Course Description</span></b><textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5"><#PARAM name='name="CourseDescription"/'></textarea><br />
</label>
<#OPTION><b><span class='<#VALIDATION>'>Default Pickup Location for Physical Items</span></b>" footerText="<br /></label>"><br/><br/>
<h4>Course Authentication</h4>
<p>There are multiple options for restricting access to items that you place on Reserve</p><p>You can set a password for the course. Students will be required to enter this password when they try to add this course to their list of enrolled courses.</p>
<label for="UseCoursePassword"><b>Would you like to use a course password?</b><select name="UseCoursePassword" class="f-name"> <option selected="selected" value="Yes">Yes</option> <option value="No">No</option></select>
</label>
<label for="CoursePassword"><#ERROR><b><span class="<#VALIDATION>">If yes, what will the password be?</span></b><input type="text" class="f-name" name="CoursePassword" value="<#PARAM name='CoursePassword'>"/>
</label>
<p>Additionally, you may enter ID numbers of the students in your course. If they are currently registered with Ares they will have access to this course. If they are not yet registered for the system, they will automatically be given access to this course when they do register.</p>
<label for="AddAuthorizedUsers"><b>Student IDs<br/><span class="note">Student ID Numbers should be separated by new lines.</span></b><textarea name="AddAuthorizedUsers" id="AddAuthroizedUsers" cols="20" rows="15"><#PARAM name='name="AddAuthorizedUsers"/'></textarea>
</label>
```
with this:
```
<!--
<label for="ExternalCourseId"><#ERROR><strong> <span class="<#VALIDATION>">External Course ID</span></strong><input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name='name="ExternalCourseID"/'>"><br />
</label>
-->
<label for="CourseName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Name</span></strong><input id="CourseName" name="CourseName" type="text" size="40" class="f-name" value="<#PARAM name='CourseName'>"><br />
</label>
<label for="CourseNumber"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Number</span><br /> <span class="note">e.g. MAT-101</span></strong><input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#PARAM name='CourseNumber'>" /><br />
</label>
<label for="CourseCode"><#ERROR><strong> <span class="<#VALIDATION>">Course Code</span></strong><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>"><br />
</label>
<#OPTION><#ERROR><strong><span class='field'>Instructor’s Username</span></strong>" class='f-name' footerText='<br/></label>'>
<label for="CourseInstructor"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Instructor</span><br/> <span class="note">(Last Name, First Name)</span></strong><input id="CourseInstructor" name="CourseInstructor" type="text" size="40" class="f-name" value="<#PARAM name='CourseInstructor'>" /><br />
</label>
<label for="Department"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Department</span></strong><#OPTION><br/>
</label>
<label for="CourseSemester"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Semester</span></strong><#OPTION><br/>
</label>
<label for="CourseURL"><#ERROR><strong> <span class="<#VALIDATION>">Course URL</span></strong><input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#PARAM name='CourseURL'>"/><br />
</label>
<label for="CourseEnrollment"><#ERROR><strong> <span class="<#VALIDATION>">Course Enrollment</span></strong><input id="CourseEnrollment" name="CourseEnrollment" type="text" size="20" class="f-name" value="<#PARAM name='CourseEnrollment'>"/><br />
</label>
<label for="CourseDescription"><#ERROR><strong> <span class="<#VALIDATION>">Course Description</span></strong><input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name='name="CourseDescription"/'>"/><br />
</label>
<#OPTION>" headerText="<label for='PickupLocation'><strong><span class='<#VALIDATION>'>Default Pickup Location for Physical Items</span></strong>" footerText="<br /></label>">
<br/><br/><h4 tabindex="0">Course Authentication</h4>
<p tabindex="0">There are multiple options for restricting access to items that you place on Reserve</p>
<p tabindex="0">You can set a password for the course. Students will be required to enter this password when they try to add this course to their list of enrolled courses.</p>
<label for="UseCoursePassword"><strong>Would you like to use a course password?</strong><select id="UseCoursePassword" name="UseCoursePassword" class="f-name"> <option selected="selected" value="Yes">Yes</option> <option value="No">No</option></select>
</label>
<label for="CoursePassword"><#ERROR><strong> <span class="<#VALIDATION>">If yes, what will the password be?</span></strong><input type="text" class="f-name" id="CoursePassword" name="CoursePassword" value="<#PARAM name='CoursePassword'>"/>
</label>
<p tabindex="0">Additionally, you may enter ID numbers of the students in your course. If they are currently registered with Ares they will have access to this course. If they are not yet registered for the system, they will automatically be given access to this course when they do register.</p>
<label for="AddAuthorizedUsers"><strong>Student IDs<br/> <span class="note">Student ID Numbers should be separated by new lines.</span></strong><textarea name="AddAuthorizedUsers" id="AddAuthorizedUsers" cols="20" rows="15"><#PARAM name='name="AddAuthorizedUsers"/'></textarea>
</label>
```
- ICourseClone.html
Replace this:
```
<!--
<label for="ExternalCourseId"><b><#ERROR>External Course Id</b><input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name='name="ExternalCourseID"/'>"><br />
</label>
-->
<label for="CourseName"><#ERROR><b><span class="req">*</span>Course Name</b><input type="text" class="f-name" id="CourseName" name="CourseName" value="<#COURSE>" size="40"><br />
</label>
<label for="CourseNumber"><#ERROR><b><span class="req">*</span>Course Number</b><input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#COURSE>"><br />
</label>
<label for="CourseCode"><#ERROR><b>Section Number/Course Number</b><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#COURSE>"><br />
</label>
<label for="CourseInstructor"><#ERROR><b><span class="req">*</span>Instructor</b><input id="CourseInstructor" name="CourseInstructor" type="text" size="40" class="f-name" value="<#COURSE>"><br />
</label>
<label for="Department"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Department</span></b><#OPTION>" Size="1"><br/>
</label>
<label for="CourseSemester"><#ERROR><b><span class="req">*</span>Course Semester<br/><span class="note">Choose the semester when you will be teaching this course again</span></b><#OPTION><br/>
</label>
<label for="CourseURL"><#ERROR><b>Course URL</b><input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#COURSE>"/><br />
</label>
<label for="CourseDescription"><#ERROR><b>Course Description</b><textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5"><#COURSE></textarea><br />
</label>
<label for="CoursePassword"><#ERROR><b>Course Password<br/><span class="note">If you do not want a password for this course, leave the field blank.</span></b><input id="CoursePassword" name="CoursePassword" type="text" size="20" class="f-name" value="<#COURSE>"/><br />
</label>
<label for='Pickup Location'><#OPTION>" headerText="<b><span class='<#VALIDATION>'>Default Pickup Location for Physical Items</span></b>"><br />
</label>
<label for="CloneItemTags"><#ERROR><b>Clone Item Tags</b><input type="checkbox" id="CloneItemTags" name="CloneItemTags" class="f-checkbox" /><br />
</label>
```
with this:
```
<!--
<label for="ExternalCourseId"><#ERROR><strong> <span class="<#VALIDATION>">External Course Id</span></strong><input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class= "f-name" value="<#PARAM name='name="ExternalCourseID"/'>"><br />
</label>
-->
<label for="CourseName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Name</span></strong><input type="text" class="f-name" id="CourseName" name="CourseName" value="<#PARAM name='name=CourseName'>" size="40" /><br />
</label>
<label for="CourseNumber"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Number</span></strong><input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#PARAM name='coursenumber'>" /><br />
</label>
<label for="CourseCode"><#ERROR><strong> <span class="<#VALIDATION>">Course Code</span></strong><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>" /><br />
</label>
<label for="CourseInstructor"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Instructor</span></strong><input id="CourseInstructor" name="CourseInstructor" type="text" size="40" class="f-name" value="<#PARAM name='CourseInstructor'>" /><br />
</label>
<label for="Department"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Department</span></strong><#OPTION>" Size="1"><br/>
</label>
<label for="Semester"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Semester</span><br/> <span class="note">Choose the semester when you will be teaching this course again</span></strong><#OPTION><br/>
</label>
<label for="CourseURL"><#ERROR><strong> <span class="<#VALIDATION>">Course URL</span></strong><input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#PARAM name='CourseURL'>"/><br />
</label>
<label for="CourseDescription"><#ERROR><strong> <span class="<#VALIDATION>">Course Description</span></strong><input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name='name="CourseDescription"/'>"/><br />
</label>
<label for="CoursePassword"><#ERROR><strong> <span class="<#VALIDATION>">Course Password</span><br/> <span class="note">If you do not want a password for this course, leave the field blank.</span></strong><input id="CoursePassword" name="CoursePassword" type="text" size="20" class="f-name" value="<#PARAM name='CoursePassword'>"/><br />
</label>
<label for='PickupLocation'><#ERROR><#OPTION>" headerText="<strong><span class='<#VALIDATION>'>Default Pickup Location for Physical Items</span></strong>"><br />
</label>
<label for="CloneItemTags"><#ERROR><strong> <span class="<#VALIDATION>">Clone Item Tags</span><br/></strong><input type="checkbox" id="CloneItemTags" name="CloneItemTags" class="f-checkbox" /><br />
</label>
```
- ICourseAuthUsers.html
Replace this:
```
To add authorized course users, enter their Student ID Numbers separated by lines.<p>
<textarea name="addauthorizedusers" cols="25" rows="15"></textarea><br/>
<input type="submit" name="SubmitButton" value="Add Authorized Users"/></span>
<span style="float: left; width: 45%; border: 1px solid #000066; text-align:center; margin: 1px; padding: 5px;">To remove authorized course users, enter their Student ID Numbers separated by lines.<p>
<textarea name="removeauthorizedusers" cols="25" rows="15"></textarea><br/>
<input type="submit" name="SubmitButton" value="Remove Authorized Users"/>
<input type="submit" name="SubmitButton" value="Clear All Authorized Users"/>
</span>
```
with this:
```
<fieldset><h2 tabindex="0">Add Authorized Users</h1><legend class="offscreen">Add Authorized Users</legend> <label for="AddAuthorizedUsers"><#ERROR> <strong> <span class="<#VALIDATION>">Enter Student ID Numbers separated by lines.</span><br /> </strong> <textarea id="AddAuthorizedUsers" name="AddAuthorizedUsers" cols="45" rows="15"></textarea><br/> </label>
<input class="f-submit" style="margin-left: 61%" type="submit" name="SubmitButton" value="Add Authorized Users"/><br />
<h2 tabindex="0">Remove Authorized Users</h2> <label for="RemoveAuthorizedUsers"><#ERROR> <strong> <span class="<#VALIDATION>">Enter Student ID Numbers separated by lines.</span><br /> </strong> <textarea id="RemoveAuthorizedUsers" name="RemoveAuthorizedUsers" cols="25" rows="15"></textarea><br/> </label>
<input class="f-submit" style="margin-left: 61%" type="submit" name="SubmitButton" value="Remove Authorized Users"/> <!--<input class="f-submit" type="submit" name="SubmitButton" value="Clear All Authorized Users"/>-->
</fieldset>
```
- NewPassword.html
Replace this:
```
<label for="Password1"><span class="field"><span class="<#VALIDATION>"><b><span class="req">*</span>New Password</b></span></span><input id="Password1" name="Password1" type="password" size="40" class="f-name" value="<#PARAM name='Password1'>"><br />
</label>
<label for="Password2"><span class="field"><span class="<#VALIDATION>"><b><span class="req">*</span>Re-enter New Password</b></span></span><input id="Password2" name="Password2" type="password" size="40" class="f-name" value="<#PARAM name='Password2'>"><br />
</label>
```
with this:
```
<label for="Password1"><strong> <span class="req">*</span> <span class="<#VALIDATION>">New Password</span></strong><input id="Password1" name="Password1" type="password" size="40" class="f-name" value="<#PARAM name='Password1'>"><br /><#ERROR>
</label>
<label for="Password2"><strong> <span class="req">*</span> <span class="<#VALIDATION>">Re-enter New Password</span></strong><input id="Password2" name="Password2" type="password" size="40" class="f-name" value="<#PARAM name='Password2'>"><br /><#ERROR>
</label>
```
- NewAuthRegistration.html
Replace this:
```
<label for="FirstName"><b><#ERROR><span class="req">*</span>First Name</b><input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM name='name="FirstName"/'>"><br />
</label>
<label for="LastName"><b><#ERROR><span class="req">*</span>Last Name</b><input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM name='name="LastName"/'>"><br />
</label>
<label for="LibraryID"><b><#ERROR><span class="req">*</span>Library ID/NetID/Some unique campus number</b><input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM name='name="LibraryID"/'>"><br />
</label>
<label for="EMailAddress"><b><#ERROR><span class="req">*</span>EMail Address</b><input id="EMailAddress" name="EMailAddress" type="text" size="40" class="f-name" value="<#PARAM name='name="EmailAddress"/'>"><br />
</label>
<label for="Phone1"><b><#ERROR><span class="req">*</span>Phone Number</b><input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM name='name="Phone1"/'>"><br />
</label>
<label for="Address1"><b><#ERROR><span class="req">*</span>Address</b><input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM name='name="Address1"/'>"><br />
</label>
<label for="Address2"><b><#ERROR>Address 2</b><input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name='name="Address2"/'>">
</label>
<label for="City"><b><#ERROR><span class="req">*</span>City</b><input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM name='name="City"/'>"><br />
</label>
<label for="State"><b><#ERROR><span class="req">*</span>State</b><!--<input id="State" name="State" type="text" size="20" class="f-name" value="<#PARAM name='name="State"/'>"><br />--><#OPTION>" Size="1"><br/>
</label>
<label for="Zip"><b><span class="req">*</span>Zip Code</b><input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM name='name="Zip"/'>"><br />
</label>
<input type="hidden" name="StatusGroup" value="<#PARAM name='name="StatusGroup"/'>">
<!--If you allow the user to change their status -->
<!--
<label for="StatusGroup"><b><#ERROR>Status</b><#OPTION>" Size="1"><br/>
</label>
-->
<label for="Department"><b><#ERROR>Department</b><#OPTION>" Size="1"><br/>
</label>
<label for="CourseEmailDefault"><b><span class="<#VALIDATION>"><b>Default Course Email Subscriptions</b></span></b><fieldset> <label for="automaticsub"> <input id="automaticsub" type="radio" name="CourseEmailDefault" value="1" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="1"/> />Automatic </label> <label for="manualsub"> <input id="manualsub" type="radio" name="CourseEmailDefault" value="0" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="0"/>/>Manual </label></fieldset>
</label>
```
with this:
```
<label for="FirstName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">First Name</span></strong><input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM name='name="FirstName"/'>"><br />
</label>
<label for="LastName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Last Name</span></strong><input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM name='name="LastName"/'>"><br />
</label>
<label for="LibraryID"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Library ID/NetID/ Some unique campus number</span></strong><input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM name='name="LibraryID"/'>"><br />
</label>
<label for="EmailAddress"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Email Address</span></strong><input id="EmailAddress" name="EmailAddress" type="text" size="40" class="f-name" value="<#PARAM name='name="EmailAddress"/'>"><br />
</label>
<label for="Phone1"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Phone Number</span></strong><input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM name='name="Phone1"/'>"><br />
</label>
<label for="Address1"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Address</span></strong><input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM name='name="Address1"/'>"><br />
</label>
<label for="Address2"><#ERROR><strong> <span class="<#VALIDATION>">Address 2</span></strong><input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name='name="Address2"/'>">
</label>
<label for="City"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">City</span></strong><input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM name='name="City"/'>"><br />
</label>
<label for="State"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">State</span></strong><!--<input id="State" name="State" type="text" size="20" class="f-name" value="<#PARAM name='name="State"/'>"><br />--><#OPTION>" Size="1"><br/>
</label>
<label for="Zip"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Zip Code</span></strong><input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM name='name="Zip"/'>"><br />
</label>
<input type="hidden" name="StatusGroup" value="<#PARAM name='name="StatusGroup"/'>">
<!--If you allow the user to change their status -->
<!--
<label for="StatusGroup"><#ERROR><strong> <span class="<#VALIDATION>">Status</span></strong><#OPTION>" Size="1"><br/>
</label>
-->
<label for="Department"><#ERROR><strong> <span class="<#VALIDATION>">Department</span></strong><#OPTION>" Size="1"><br/>
</label>
<label for="CourseEmailDefault"><#ERROR><strong> <span class="<#VALIDATION>" tabindex="0">Default Course Email Subscriptions</span></strong><fieldset> <legend class="offscreen">Supply method</legend>
<label for="automaticsub"> <input id="automaticsub" type="radio" name="CourseEmailDefault" value="1" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="1"/> />Automatic </label> <label for="manualsub"> <input id="manualsub" type="radio" name="CourseEmailDefault" value="0" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="0"/>/>Manual </label></fieldset>
</label>
```
- ChangePassword.html
Replace this:
```
<label for="CurrentPassword"><b><#ERROR><span class="req">*</span>Current Password</b><input id="CurrentPassword" name="CurrentPassword" type="password" size="40" class="f-name"><br />
</label>
<label for="Last Name"><b><#ERROR><span class="req">*</span>New Password</b><input id="Password1" name="Password1" type="password" size="40" class="f-name" /><br />
</label>
<label for="Password2"><b><span class="req">*</span>Confirm New Password</b><input id="Password2" name="Password2" type="password" size="40" class="f-name" /><br />
</label>
<label for="PasswordHint"><b><#ERROR><span class="req">*</span>Password Hint</b><input id="PasswordHint" name="Passwordhint" type="text" size="40" class="f-name" value="<#USER>"><br />
</label>
```
with this:
```
<label for="CurrentPassword"><strong> <span class="req">*</span> <span class="<#VALIDATION>">Current Password</span></strong><input id="CurrentPassword" name="CurrentPassword" type="password" size="40" class="f-name" /><br /><#ERROR>
</label>
<label for="Password1"><strong> <span class="req">*</span> <span class="<#VALIDATION>">New Password</span></strong><input id="Password1" name="Password1" type="password" size="40" class="f-name" /><br /><#ERROR>
</label>
<label for="Password2"><strong> <span class="req">*</span> <span class="<#VALIDATION>">Confirm New Password</span></strong><input id="Password2" name="Password2" type="password" size="40" class="f-name" /><br /><#ERROR>
</label>
<label for="PasswordHint"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Password Hint</span></strong><input id="PasswordHint" name="Passwordhint" type="text" size="40" class="f-name" value="<#PARAM name="PasswordHint" />"><br />
</label>
```
- ChangeUserInformation.html
Replace this:
```
<label for="FirstName"><b><#ERROR><span class="req">*</span>First Name</b><input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM name='name="FirstName"/'>"><br />
</label>
<label for="Last Name"><b><#ERROR><span class="req">*</span>Last Name</b><input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM name='name="LastName"/'>"><br />
</label>
<label for="LibraryID"><b><#ERROR><span class="req">*</span>Library ID/NetID/Some unique campus number</b><input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM name='name="LibraryID"/'>"><br />
</label>
<label for="EMailAddress"><b><#ERROR><span class="req">*</span>EMail Address</b><input id="EMailAddress" name="EMailAddress" type="text" size="40" class="f-name" value="<#PARAM name='name="EmailAddress"/'>"><br />
</label>
<label for="Phone1"><b><#ERROR><span class="req">*</span>Phone Number</b><input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM name='name="Phone1"/'>"><br />
</label>
<label for="Address1"><b><#ERROR><span class="req">*</span>Address</b><input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM name='name="Address1"/'>"><br />
</label>
<label for="Address2"><b><#ERROR>Address 2</b><input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name='name="Address2"/'>"><br />
</label>
<label for="City"><b><#ERROR><span class="req">*</span>City</b><input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM name='name="City"/'>"><br />
</label>
<label for="State"><b><#ERROR><span class="req">*</span>State</b><!--<input id="State" name="State" type="text" size="20" class="f-name" value="<#PARAM name='name="State"/'>"><br />--><#OPTION>" Size="1"><br/>
</label>
<label for="Zip"><b><span class="req">*</span>Zip Code</b><input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM name='name="Zip"/'>"><br />
</label>
<input type="hidden" name="StatusGroup" value="<#PARAM name='name="StatusGroup"/'>">
<!--If you allow the user to change their status -->
<!--
<label for="StatusGroup"><b><#ERROR>Status</b><#OPTION>" Size="1"><br/>
</label>
-->
<label for="Department"><b><#ERROR>Department</b><#OPTION>" Size="1"><br/>
</label>
<label for="CourseEmailDefault"><b><span class="<#VALIDATION>"><b>Default Course Email Subscriptions</b></span></b><fieldset> <label for="automaticsub"> <input id="automaticsub" type="radio" name="CourseEmailDefault" value="1" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="1"/> />Automatic </label> <label for="manualsub"> <input id="manualsub" type="radio" name="CourseEmailDefault" value="0" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="0"/>/>Manual </label></fieldset>
</label>
```
with this:
```
<label for="FirstName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">First Name</span></strong><input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM name='name="FirstName"/'>"><br />
</label>
<label for="LastName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Last Name</span></strong><input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM name='name="LastName"/'>"><br />
</label>
<label for="LibraryID"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Library ID/NetID/Some unique campus number</span></strong><input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM name='name="LibraryID"/'>"><br />
</label>
<label for="EmailAddress"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Email Address</span></strong><input id="EmailAddress" name="EmailAddress" type="text" size="40" class="f-name" value="<#PARAM name='name="EmailAddress"/'>"><br />
</label>
<label for="Phone1"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Phone Number</span></strong><input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM name='name="Phone1"/'>"><br />
</label>
<label for="Address1"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Address</span></strong><input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM name='name="Address1"/'>"><br />
</label>
<label for="Address2"><#ERROR><strong> <span class="<#VALIDATION>">Address 2</span></strong><input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name='name="Address2"/'>"><br />
</label>
<label for="City"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">City</span></strong><input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM name='name="City"/'>"><br />
</label>
<label for="State"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">State</span></strong><#OPTION>" Size="1"><br/>
</label>
<label for="Zip"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Zip Code</span></strong><input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM name='name="Zip"/'>"><br />
</label>
<input type="hidden" name="StatusGroup" value="<#PARAM name='name="StatusGroup"/'>">
<!--If you allow the user to change their status -->
<!--
<label for="StatusGroup"><#ERROR><strong> <span class="<#VALIDATION>">Status</span></strong><#OPTION>" Size="1"><br/>
</label>
-->
<label for="Department"><#ERROR><strong> <span class="<#VALIDATION>">Department</span></strong><#OPTION>" Size="1"><br/>
</label>
<label for="CourseEmailDefault"><#ERROR><strong> <span class="<#VALIDATION>" tabindex="0">Default Course Email Subscriptions</span></strong><fieldset><legend class="offscreen">Course email subscription options</legend> <label for="automaticsub"> <input id="automaticsub" type="radio" name="CourseEmailDefault" value="1" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="1"/> />Automatic </label> <label for="manualsub"> <input id="manualsub" type="radio" name="CourseEmailDefault" value="0" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="0"/>/>Manual </label></fieldset>
</label>
```
- ForgotPassword.html
Replace this:
```
<label for="Username"><span class="field"> <span class="<#VALIDATION>"><b><span class="req">*</span>Username</b></span></span><input id="Username" name="Username" type="text" size="40" class="f-name" value="<#PARAM name='Username'>"><br />
</label>
```
with this:
```
<label for="Username"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Username</span></strong><input id="Username" name="Username" type="text" size="40" class="f-name" value="<#PARAM name='Username'>"><br />
</label>
```
- GCreateAccount.html
Replace this:
```
<label for="Username"><span class="<#VALIDATION>"><b><span class="req">*</span>Username</b></span><span class="fade" id="usernamespan" name="usernamespan"></span><input id="Username" name="UserName" onBlur="checkUniqueUsername(this.value); return false;" type="text" size="40" class="f-name" value="<#PARAM name='Name="Username"/'>"><br />
</label>
<label for="FirstName"><span class="<#VALIDATION>"><b><span class="req">*</span>First Name</b></span><input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM name='Name="FirstName"/'>"><br />
</label>
<label for="Last Name"><span class="<#VALIDATION>"><b><span class="req">*</span>Last Name</b></span><input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM name='Name="LastName"/'>"><br />
</label>
<label for="LibraryID"><span class="<#VALIDATION>"><b><span class="req">*</span>Library ID</b></span><input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM name='Name="LibraryID"/'>"><br />
</label>
<label for="EMailAddress"><span class="<#VALIDATION>"><b><span class="req">*</span>E-mail Address</b></span><input id="EMailAddress" name="EMailAddress" type="text" size="40" class="f-name" value="<#PARAM name='Name="EmailAddress"/'>"><br />
</label>
<label for="Phone1"><span class="<#VALIDATION>"><b><span class="req">*</span>Phone Number</b></span><input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM name='Name="Phone1"/'>"><br />
</label>
<label for="Address1"><span class="<#VALIDATION>"><b><span class="req">*</span>Address</b></span><input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM name='Name="Address1"/'>"><br />
</label>
<label for="Address2"><b>Address 2</b><input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name='NAME="Address2"/'>">
</label>
<label for="City"><span class="<#VALIDATION>"><b><span class="req">*</span>City</b></span><input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM name='Name="City"/'>"><br />
</label>
<label for="State"><span class="<#VALIDATION>"><b><span class="req">*</span>State</b></span><#OPTION>" Size="1"><br/>
</label>
<label for="Zip"><span class="<#VALIDATION>"><b><span class="req">*</span>Zip Code</b></span><input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM name='Name="Zip"/'>"><br />
</label>
<label for="StatusGroup"><span class="<#VALIDATION>"><b><span class="req">*</span>Status</b></span><#OPTION>" Size="1"><br/>
</label>
<label for="Department"><span class="<#VALIDATION>"><b><span class="req">*</span>Department</b></span><#OPTION>" Size="1"><br/>
</label>
<label for="Password1"><span class="<#VALIDATION>"><b><span class="req">*</span>Password</b></span><input id="Password1" name="Password1" type="password" size="40" class="f-name" value="<#PARAM name='Name="Password1"/'>"><br />
</label>
<label for="Password2"><span class="<#VALIDATION>"><b><span class="req">*</span>Confirm Password</b></span><input id="Password2" name="Password2" type="password" size="40" class="f-name" value="<#PARAM name='Name="Password2"/'>"><br />
</label>
<label for="PasswordHint"><b>Password Hint</b><input id="PasswordHint" name="PasswordHint" type="text" size="40" class="f-name" value="<#PARAM name='Name="PasswordHint"/'>"><br />
</label>
<label for="CourseEmailDefault"><b><span class="<#VALIDATION>"><b>Default Course Email Subscriptions</b></span></b><fieldset> <label for="automaticsub"> <input id="automaticsub" type="radio" name="CourseEmailDefault" value="1" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="1"/> />Automatic </label> <label for="manualsub"> <input id="manualsub" type="radio" name="CourseEmailDefault" value="0" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="0"/>/>Manual </label></fieldset>
</label>
```
with this:
```
<label for="Username"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Username</span></strong><span class="fade" id="usernamespan" name="usernamespan"></span><input id="Username" name="UserName" onBlur="checkUniqueUsername(this.value); return false;" type="text" size="40" class="f-name" value="<#PARAM name='Name="Username"/'>"><br />
</label>
<label for="FirstName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">First Name</span></strong><input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value= "<#PARAM name='Name="FirstName"/'>"><br />
</label>
<label for="LastName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Last Name</span></strong><input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM name='Name="LastName"/'>"><br />
</label>
<label for="LibraryID"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Library ID</span></strong><input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM name='Name="LibraryID"/'>"><br />
</label>
<label for="EmailAddress"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Email Address</span></strong><input id="EmailAddress" name="EmailAddress" type="text" size="40" class="f-name" value="<#PARAM name='Name="EmailAddress"/'>"><br />
</label>
<label for="Phone1"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Phone Number</span></strong><input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM name='Name="Phone1"/'>"><br />
</label>
<label for="Address1"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Address</span></strong><input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM name='Name="Address1"/'>"><br />
</label>
<label for="Address2"><#ERROR><strong> <span class="<#VALIDATION>">Address 2</span></strong><input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name='name="Address2"/'>"><br />
</label>
<label for="City"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">City</span></strong><input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM name='Name="City"/'>"><br />
</label>
<label for="State"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">State</span></strong><#OPTION>" Size="1"><br/>
</label>
<label for="Zip"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Zip Code</span></strong><input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM name='Name="Zip"/'>"><br />
</label>
<label for="StatusGroup"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Status</span></strong><#OPTION>" Size="1"><br/>
</label>
<label for="Department"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Department</span></strong><#OPTION>" Size="1"><br/>
</label>
<label for="Password1"><strong> <span class="req">*</span> <span class="<#VALIDATION>">Password</span></strong><input id="Password1" name="Password1" type="password" size="40" class="f-name" value="<#PARAM name='Name="Password1"/'>"><br /><#ERROR>
</label>
<label for="Password2"><strong> <span class="req">*</span> <span class="<#VALIDATION>">Confirm Password</span></strong><input id="Password2" name="Password2" type="password" size="40" class="f-name" value="<#PARAM name='Name="Password2"/'>"><br /><#ERROR>
</label>
<label for="PasswordHint"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Password Hint</span></strong><input id="PasswordHint" name="Passwordhint" type="text" size="40" class="f-name" value="<#PARAM name="PasswordHint" />"><br />
</label>
<label for="CourseEmailDefault"><strong> <span class="<#VALIDATION>" tabindex="0">Default Course Email Subscriptions</span></strong><fieldset> <legend class="offscreen">Course email subscription options</legend> <label for="automaticsub"> <input id="automaticsub" type="radio" name="CourseEmailDefault" value="1" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="1"/> />Automatic </label> <label for="manualsub"> <input id="manualsub" type="radio" name="CourseEmailDefault" value="0" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="0"/>/>Manual </label></fieldset>
</label>
```
- GLogon.html
Replace this:
```
<label for="username"><b><span class="req">*</span>Username:</b><input id="username" name="username" type="text" class="f-name" /><br />
</label>
<label for="password"><b><span class="req">*</span>Password:</b><input id="password" name="password" type="password" class="f-name" /><br />
</label>
```
with this:
```
<legend class="offscreen">Ares Logon</legend>
<label for="username"><strong> <span class="req">*</span> <span>Username:</span></strong><input id="username" name="username" type="text" class="f-name" /><br />
</label>
<label for="password"><strong> <span class="req">*</span>Password:</strong><input id="password" name="password" type="password" class="f-name" /><br />
</label>
```
- GLogon2.html
Replace this:
```
<label for="username"><b><span class="req">*</span>Username:</b><input id="username" name="username" type="text" class="f-name" /><br />
</label>
<label for="password"><b><span class="req">*</span>Password:</b><input id="password" name="password" type="password" class="f-name" /><br />
</label>
```
with this:
```
<label for="username"><strong> <span class="req">*</span> <span>Username:</span></strong><input id="username" name="username" type="text" class="f-name" /><br />
</label>
<label for="password"><strong> <span class="req">*</span>Password:</strong><input id="password" name="password" type="password" class="f-name" /><br />
</label>
```
- ISharedListCreate.html
Replace this:
```
<#OPTION><#ERROR><b>Instructor’s Username</b>" tabindex="25" class="f-name" footerText="<br /></label>"/>
<label for="SharedListName">
<#ERROR>
<b><span class="req">*</span><span class="<#VALIDATION>">Shared List Name</span></b>
```
with this:
```
<#OPTION><#ERROR><strong>Instructor’s Username</strong>" class="f-name" footerText="<br /></label>"/>
<label for="SharedListName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Shared List Name</span></strong>
```
- ISharedListEdit.html
Replace this:
```
<label for="SharedListName"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Shared List Name</span></b>
```
with this:
```
<label for="SharedListName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Shared List Name</span></strong>
```
Filtering Tables
The new "filterTable" css class was applied to some tables. This allows web users to search and sort table columns. It was added to the Item, Course, CourseItemRestrictions, SharedList, SharedListItem, and SharedListItemRestrictions tables. Changes were made on the following pages:
In order to use filtering, the include_head.html page must be in your Ares web folder.
- include_head.html
Add this:
```
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/r/dt/dt-1.10.8/datatables.min.css"/>
```
and this:
```
<script type="text/javascript" src="//cdn.datatables.net/r/dt/dt-1.10.8/datatables.min.js"></script>
```
- IApplySharedList.html
Replace this:
```
<#TABLE>
```
with this:
```
<#TABLE>
```
- UCourseInfo.html
Replace this:
```
<#TABLE>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION>" UnreadItem="<img src='images/new.gif' alt='New Item'/>" ReadItem="" NoDataAction="ShowMessage" NoDataMessage="There are no items in this course.">
```
with this:
```
<#TABLE>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION>" UnreadItem="<img src='images/new.gif' alt='New Item'/>" ReadItem="" NoDataAction="ShowMessage" NoDataMessage="There are no items in this course.">
```
- UCourseTags.html
Replace this:
```
<#TABLE>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION>" column="UserViewed" UnreadItem="<img src='images/new.gif' alt='New Item'/>" ReadItem="<img src='images/itemviewed.gif' alt='PreviouslyViewed'/>" column="Tags:Tags" NoDataAction="ShowMessage" NoDataMessage="There are no items in this course.">
```
with this:
```
<#TABLE>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION>" column="UserViewed" UnreadItem="<img src='images/new.gif' alt='New Item'/>" ReadItem="<img src='images/itemviewed.gif' alt='PreviouslyViewed'/>" column="Tags:Tags" NoDataAction="ShowMessage" NoDataMessage="There are no items in this course.">
```
- UHome.html
Replace this:
```
<#TABLE>" LinkType="ItemInformation" AllowRowClick="Yes" LinkColumn="BothTitlesIcon" AllowJavascriptHover="Yes" column="BothTitlesIcon:Title" column="Author:Author" column="Department:Department" column="CourseNumber:Course" HotList="Yes" hotListAdd="False" hotListAddText="Add checked items to <#CUSTOMIZATION>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION>" ONLYHotListItems="Yes" NoDataAction="ShowNothing">
```
with this:
```
<#TABLE>" LinkType="ItemInformation" LinkColumn="BothTitlesIcon" column="BothTitlesIcon:Title" column="Author:Author" column="Department:Department" column="CourseNumber:Course" HotList="Yes" hotListAdd="False" hotListAddText="Add checked items to <#CUSTOMIZATION>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION>" ONLYHotListItems="Yes" NoDataAction="ShowNothing">
```
- UHotList.html
Replace this:
```
<#TABLE>" LinkType="ItemInformation" AllowRowClick="Yes" LinkColumn="BothTitlesIcon" AllowJavascriptHover="Yes" column="BothTitlesIcon:Title" column="Author:Author" column="Department:Department" column="CourseNumber:Course" HotList="Yes" hotListAdd="False" hotListAddText="Add checked items to <#CUSTOMIZATION>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION>" ONLYHotListItems="Yes" NoDataAction="ShowNothing">
```
with this:
```
<#TABLE>" LinkType="ItemInformation" LinkColumn="BothTitlesIcon" column="BothTitlesIcon:Title" column="Author:Author" column="Department:Department" column="CourseNumber:Course" HotList="Yes" hotListAdd="False" hotListAddText="Add checked items to <#CUSTOMIZATION>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION>" ONLYHotListItems="Yes" NoDataAction="ShowMessage" NoDataMessage="No items found.">
```
- USearchResults.html
Replace this:
```
<#TABLE>" ReadItem="<img src='images/itemviewed.gif' alt='PreviouslyViewed'/>" NoDataAction="ShowMessage" NoDataMessage="Your search produced no results.">
```
with this:
```
<#TABLE>" ReadItem="<img src='images/itemviewed.gif' alt='PreviouslyViewed'/>" NoDataAction="ShowMessage" NoDataMessage="Your search produced no results.">
```
- ISharedListInfo.html
Replace this:
```
<#TABLE>
```
with this:
```
<#TABLE>
```
- ISearchResults.html
Replace this:
```
<#TABLE>" ReadItem="<img src='images/itemviewed.gif' alt='PreviouslyViewed'/>" NoDataAction="ShowMessage" NoDataMessage="Your search produced no results.">
```
with this:
```
<#TABLE>" ReadItem="<img src='images/itemviewed.gif' alt='PreviouslyViewed'/>" NoDataAction="ShowMessage" NoDataMessage="Your search produced no results.">
```
- GSearchResults.html
Replace this:
```
<#TABLE>
```
with this:
```
<#TABLE>
```
- IPreviousCourseList.html
Replace this:
```
<#TABLE>
```
with this:
```
<#TABLE>
```
- ICourseInfo.html
Replace this:
```
<#TABLE>
```
with this:
```
<#TABLE>
```
- IInstructorSharedLists.html
Replace this:
```
<#TABLE>
```
with this:
```
<#TABLE>
```
Replace this:
```
<#TABLE>
```
with this:
```
<#TABLE>
```
- IHome.html
Replace this:
```
<#TABLE>
```
with this:
```
<#TABLE>
```
- ICourseTags.html
Replace this:
```
<#TABLE>" ReadItem="<img src='images/itemviewed.gif' alt='PreviouslyViewed'/>" NoDataAction="ShowMessage" NoDataMessage="There are no items in this course." allowsort="true">
```
with this:
```
<#TABLE>" ReadItem="<img src='images/itemviewed.gif' alt='PreviouslyViewed'/>" NoDataAction="ShowMessage" NoDataMessage="There are no items in this course." allowsort="true">
```
Enrolled Students List
Instructors can view a list of enrolled students in a Course from the Course Tools Menu.
- include_instructorcoursemenu.html
Add this:
```
<li><a href="<#ACTION action="10" form="20">">Enrolled Students</a></li>
```
in this list:
```
<li class="active"><span class="nav-section" tabindex="0">Instructor Course Tools<ul> <li class="first"><a href="<#ACTION action="10" form="20">">Course Home</a></li> <li><a href="<#ACTION action="10" form="20">">Edit Course</a></li> <li><a href="<#ACTION action="10" form="20">">Cross Listings</a></li> <li><a href="<#ACTION action="10" form="20">">Clone Course</a></li> <li><a href="<#ACTION action="10" form="20">">Course Proxy Users</a></li> <li><a href="<#ACTION action="10" form="20">">Authorized Users</a></li> <li><a href="<#ACTION action="10" form="20">&CourseID=<#COURSE>">Add Reserve Items</a></li> <li><a href="<#ACTION action="10" form="20">">Messageboard</a></li> <li><a href="<#ACTION action="10" form="20">">Reserve Item Usage</a></li> <li class="last"><a href="<#ACTION action="10" form="20">">Export Course Info</a></li></ul>
</li>
```
- ICourseStudentList.html - add this to the Ares web folder
Inactive Menu Options
The "disabledText" class was added. When editing an Item, the menu options will now be grayed out instead of invisible when inactive. Changes were made on the following pages:
- main.css
Add this:
```
.disabledText {color: #555}
```
in the Typography section:
```
/* TYPOGRAPHY */
```
Batch Tagging
Instructors and students can add a tag to multiple Items at the same time. Changes were made to the following pages. See Allowing Batch Tag Adding for instructions and code.
- aresBatchEditing.js - needs to be added to your Ares web folder
- include_head.html - needs to be added to your Ares web folder
- ICourseInfo.html
- UCourseInfo.html
English HTML
The HTML lang attribute has been added to the Ares web pages. This is used to declare the language of a web page and is meant to assist search engines and browsers.
This change was made on all Ares default web pages.
Replace this:
<html> OR <html xmlns="http://www.w3.org/1999/xhtml">
with this:
<html lang="en-US"> OR <html lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
Content
The "main" role has been added to the content div on the default web pages. This helps screen readers and other assistive technologies understand where the main content of the page begins.
This change was made on all Ares default web pages.
Replace this:
<div id="content">
with this:
<div id="content" role="main" tabindex="-1">
Footer
The "contentinfo" role was added to the footer div on the default web pages. This helps screen readers and other assistive technologies understand where the footer is located on the page.
This change was made on all Ares default web pages.
Replace this:
<div id="footer">
with this:
<div id="footer" role="contentinfo">
Email Spelling
The spelling of the word "email" is now consistent throughout all Ares web pages. Spellings such as "EMails" or "EMail" have been replaced with "email." Changes were made on the following pages:
- include_courseproxycoursemenu.html
Replace this:
```
<li class="last"><a href="<#ACTION action="10" form="20">">My EMails</a></li>
```
with this:
```
<li class="last"><a href="<#ACTION action="10" form="20">">My Emails</a></li>
```
- include_fullproxysharedlistmenu.html
Replace this:
```
<li class="last"><a href="<#ACTION action="10" form="20">">My EMails</a></li>
```
with this:
```
<li class="last"><a href="<#ACTION action="10" form="20">">My Emails</a></li>
```
- include_instructorcoursemenu.html
Replace this:
```
<li class="last"><a href="<#ACTION action="10" form="20">">My EMails</a></li>
```
with this:
```
<li class="last"><a href="<#ACTION action="10" form="20">">My Emails</a></li>
```
- include_instructorsharedlistmenu.html
Replace this:
```
<li class="last"><a href="<#ACTION action="10" form="20">">My EMails</a></li>
```
with this:
```
<li class="last"><a href="<#ACTION action="10" form="20">">My Emails</a></li>
```
- include_menu.html
Replace this:
```
<li class="last"><a href="<#ACTION action="10" form="20">">My EMails</a></li>
```
with this:
```
<li class="last"><a href="<#ACTION action="10" form="20">">My Emails</a></li>
```
- include_studentcoursemenu.html
Replace this:
```
<li class="last"><a href="<#ACTION action="10" form="20">">My EMails</a></li>
```
with this:
```
<li class="last"><a href="<#ACTION action="10" form="20">">My Emails</a></li>
```
- ChangeUserInformation.html
Replace this:
```
<label for="EMailAddress"><b><#ERROR><span class="req">*</span>EMail Address</b><input id="EMailAddress" name="EMailAddress" type="text" size="40" class="f-name" value="<#PARAM name='name="EmailAddress"/'>"><br />
</label>
```
with this:
```
<label for="EmailAddress"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Email Address</span></strong><input id="EmailAddress" name="EmailAddress" type="text" size="40" class="f-name" value="<#PARAM name='name="EmailAddress"/'>"><br />
</label>
```
- GCreateAccount.html
Replace this:
```
<label for="EMailAddress"><span class="<#VALIDATION>"><b><span class="req">*</span>E-mail Address</b></span><input id="EMailAddress" name="EMailAddress" type="text" size="40" class="f-name" value="<#PARAM name='Name="EmailAddress"/'>"><br />
</label>
```
with this:
```
<label for="EmailAddress"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Email Address</span></strong><input id="EmailAddress" name="EmailAddress" type="text" size="40" class="f-name" value="<#PARAM name='Name="EmailAddress"/'>"><br />
</label>
```
- NewAuthRegistration.html
Replace this:
```
<label for="EMailAddress"><b><#ERROR><span class="req">*</span>EMail Address</b><input id="EMailAddress" name="EMailAddress" type="text" size="40" class="f-name" value="<#PARAM name='name="EmailAddress"/'>"><br />
</label>
```
with this:
```
<label for="EmailAddress"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Email Address</span></strong><input id="EmailAddress" name="EmailAddress" type="text" size="40" class="f-name" value="<#PARAM name='name="EmailAddress"/'>"><br />
</label>
```
- ViewItemNotificationsDetail.html
Replace this:
```
<#TABLE><br />
```
with this:
```
<#TABLE><br />
```
- ViewNotificationsDetail.html
Replace this:
```
<#TABLE><br />
```
with this:
```
<#TABLE><br />
```
Strong vs. Bold
The <strong> element has replaced the <b> (bold) element on certain web pages. This makes no visual difference, but adds semantic strong importance. This is helpful for text-to-speech programs and other assistive technologies. Changes were made on the following pages:
- main.css
Replace this:
```
form.f-wrap-1 label b {float:left;width:8em;line-height: 1.7;display:block;position:relative}
```
with this:
```
form.f-wrap-1 label strong {float:left;width:8em;line-height: 1.7;display:block;position:relative}
```
Replace this:
```
form.f-wrap-1 label b .req {color:#c00;font-size:150%;font-weight:normal;position:absolute;top:-.1em;line-height:1em;left:-.4em;width:.3em;height:.3em}
```
with this:
```
form.f-wrap-1 label strong .req {color:#c00;font-size:150%;font-weight:normal;position:absolute;top:-.1em;line-height:1em;left:-.4em;width:.3em;height:.3em}
```
Replace this:
```
form.f-wrap-1 div.req b {color:#c00;font-size:140%}
```
with this:
```
form.f-wrap-1 div.req strong {color:#c00;font-size:140%}
```
Replace this:
```
form.f-wrap-1 fieldset.f-checkbox-wrap b, form.f-wrap-1 fieldset.f-radio-wrap b {float:left;width:8em;line-height: 1.7;display:block;position:relative;padding-top:.3em}
```
with this:
```
form.f-wrap-1 fieldset.f-checkbox-wrap strong, form.f-wrap-1 fieldset.f-radio-wrap strong {float:left;width:8em;line-height: 1.7;display:block;position:relative;padding-top:.3em}
```
Replace this:
```
form.f-wrap-1 label span.errormsg b {padding: 10px 0;margin: 0 10px 0 30px;color:#B30800;font-weight:bold;display:block;width:auto;float:none;line-height:1.3}
```
with this:
```
form.f-wrap-1 label span.errormsg strong {padding: 10px 0;margin: 0 10px 0 30px;color:#B30800;font-weight:bold;display:block;width:auto;float:none;line-height:1.3}
```
Replace this:
```
form.f-wrap-2 label b {float:left;line-height: 1.7;display:block;position:relative}
```
with this:
```
form.f-wrap-2 label strong {float:left;line-height: 1.7;display:block;position:relative}
```
Replace this:
```
form.f-wrap-2 label b .req {color:#c00;font-size:150%;font-weight:normal;position:absolute;top:-.1em;line-height:1;left:-.4em;width:.3em;height:.3em}
```
with this:
```
form.f-wrap-2 label strong .req {color:#c00;font-size:150%;font-weight:normal;position:absolute;top:-.1em;line-height:1;left:-.4em;width:.3em;height:.3em}
```
Replace this:
```
form.f-wrap-2 div.req b {color:#c00;font-size:140%}
```
with this:
```
form.f-wrap-2 div.req strong {color:#c00;font-size:140%}
```
Replace this:
```
form.f-wrap-2 fieldset.f-checkbox-wrap b, form.f-wrap-2 fieldset.f-radio-wrap b {float:left;width:8em;line-height: 1.7;display:block;position:relative;padding-top:.3em}
```
with this:
```
form.f-wrap-2 fieldset.f-checkbox-wrap strong, form.f-wrap-2 fieldset.f-radio-wrap strong {float:left;width:8em;line-height: 1.7;display:block;position:relative;padding-top:.3em}
```
Replace this:
```
form.f-wrap-2 label span.errormsg b {padding: 10px 0;margin: 0 10px 0 30px;color:#B30800;font-weight:bold;display:block;width:auto;float:none;line-height:1.3}
```
with this:
```
form.f-wrap-2 label span.errormsg strong {padding: 10px 0;margin: 0 10px 0 30px;color:#B30800;font-weight:bold;display:block;width:auto;float:none;line-height:1.3}
```
Replace this:
```
form.f-wrap-request label b {float:left;width:60%;line-height: 1.7;display:block;position:relative}
```
with this:
```
form.f-wrap-request label strong {float:left;width:60%;line-height: 1.7;display:block;position:relative}
```
Replace this:
```
form.f-wrap-request label b .note {color:#333333;font-size:80%;font-weight:normal}
```
with this:
```
form.f-wrap-request label strong .note {color:#333333;font-size:80%;font-weight:normal}
```
Replace this:
```
form.f-wrap-request label b .req {color:#c00;font-size:150%;font-weight:normal;position:absolute;top:-.1em;line-height:1em;left:-.4em;width:.3em;height:.3em}
```
with this:
```
form.f-wrap-request label strong .req {color:#c00;font-size:150%;font-weight:normal;position:absolute;top:-.1em;line-height:1em;left:-.4em;width:.3em;height:.3em}
```
Replace this:
```
form.f-wrap-request div.req b {color:#c00;font-size:140%}
```
with this:
```
form.f-wrap-request div.req strong {color:#c00;font-size:140%}
```
Replace this:
```
form.f-wrap-request fieldset.f-checkbox-wrap b, form.f-wrap-request fieldset.f-radio-wrap b {float:left;width:8em;line-height: 1.7;display:block;position:relative;padding-top:.3em}
```
with this:
```
form.f-wrap-request fieldset.f-checkbox-wrap strong, form.f-wrap-request fieldset.f-radio-wrap strong {float:left;width:8em;line-height: 1.7;display:block;position:relative;padding-top:.3em}
```
Replace this:
```
form.f-wrap-request label span.errormsg b {padding: 10px 0;margin: 0 10px 0 30px;color:#B30800;font-weight:bold;display:block;width:auto;float:none;line-height:1.3}
```
with this:
```
form.f-wrap-request label span.errormsg strong {padding: 10px 0;margin: 0 10px 0 30px;color:#B30800;font-weight:bold;display:block;width:auto;float:none;line-height:1.3}
```
Replace this:
```
form.f-wrap-detail label b {float:left;width:60%;line-height: 1.7;display:block;position:relative}
```
with this:
```
form.f-wrap-detail label strong {float:left;width:60%;line-height: 1.7;display:block;position:relative}
```
Replace this:
```
form.f-wrap-detail label b .note {color:#333333;font-size:80%;font-weight:normal}
```
with this:
```
form.f-wrap-detail label strong .note {color:#333333;font-size:80%;font-weight:normal}
```
Replace this:
```
form.f-wrap-detail label b .req {color:#c00;font-size:150%;font-weight:normal;position:absolute;top:-.1em;line-height:1em;left:-.4em;width:.3em;height:.3em}
```
with this:
```
form.f-wrap-detail label strong .req {color:#c00;font-size:150%;font-weight:normal;position:absolute;top:-.1em;line-height:1em;left:-.4em;width:.3em;height:.3em}
```
Replace this:
```
form.f-wrap-detail div.req b {color:#c00;font-size:140%}
```
with this:
```
form.f-wrap-detail div.req strong {color:#c00;font-size:140%}
```
Replace this:
```
form.f-wrap-detail fieldset.f-checkbox-wrap b, form.f-wrap-detail fieldset.f-radio-wrap b {float:left;width:8em;line-height: 1.7;display:block;position:relative;padding-top:.3em}
```
with this:
```
form.f-wrap-detail fieldset.f-checkbox-wrap strong, form.f-wrap-detail fieldset.f-radio-wrap strong {float:left;width:8em;line-height: 1.7;display:block;position:relative;padding-top:.3em}
```
Replace this:
```
form.f-wrap-detail label span.errormsg b {padding: 10px 0;margin: 0 10px 0 30px;color:#B30800;font-weight:bold;display:block;width:auto;float:none;line-height:1.3}
```
with this:
```
form.f-wrap-detail label span.errormsg strong {padding: 10px 0;margin: 0 10px 0 30px;color:#B30800;font-weight:bold;display:block;width:auto;float:none;line-height:1.3}
```
- NewPassword.html
Replace this:
```
<label for="Password1"><span class="field"> <span class="<#VALIDATION>"><b><span class="req">*</span>New Password</b></span></span><input id="Password1" name="Password1" type="password" size="40" class="f-name" value="<#PARAM name='Password1'>"><br />
</label>
<label for="Password2"><span class="field"> <span class="<#VALIDATION>"><b><span class="req">*</span>Re-enter New Password</b></span></span><input id="Password2" name="Password2" type="password" size="40" class="f-name" value="<#PARAM name='Password2'>"><br />
</label>
```
with this:
```
<label for="Password1"><strong> <span class="req">*</span> <span class="<#VALIDATION>">New Password</span></strong><input id="Password1" name="Password1" type="password" size="40" class="f-name" value="<#PARAM name='Password1'>"><br /><#ERROR>
</label>
<label for="Password2"><strong> <span class="req">*</span> <span class="<#VALIDATION>">Re-enter New Password</span></strong><input id="Password2" name="Password2" type="password" size="40" class="f-name" value="<#PARAM name='Password2'>"><br /><#ERROR>
</label>
```
- ChangePassword.html
Replace this:
```
<div class="req"><b>*</b> Indicates required field</div>
```
with this:
```
<div class="req" tabindex="0"><strong>*</strong> Indicates required field</div>
```
Replace this:
```
<label for="CurrentPassword"><b><#ERROR><span class="req">*</span>Current Password</b><input id="CurrentPassword" name="CurrentPassword" type="password" size="40" class="f-name"><br />
</label>
<label for="Last Name"><b><#ERROR><span class="req">*</span>New Password</b><input id="Password1" name="Password1" type="password" size="40" class="f-name" /><br />
</label>
<label for="Password2"><b><span class="req">*</span>Confirm New Password</b><input id="Password2" name="Password2" type="password" size="40" class="f-name" /><br />
</label>
<label for="PasswordHint"><b><#ERROR><span class="req">*</span>Password Hint</b><input id="PasswordHint" name="Passwordhint" type="text" size="40" class="f-name" value="<#USER>"><br />
</label>
```
with this:
```
<label for="CurrentPassword"><strong> <span class="req">*</span> <span class="<#VALIDATION>">Current Password</span></strong><input id="CurrentPassword" name="CurrentPassword" type="password" size="40" class="f-name" /><br /><#ERROR>
</label>
<label for="Password1"><strong> <span class="req">*</span> <span class="<#VALIDATION>">New Password</span></strong><input id="Password1" name="Password1" type="password" size="40" class="f-name" /><br /><#ERROR>
</label>
<label for="Password2"><strong> <span class="req">*</span> <span class="<#VALIDATION>">Confirm New Password</span></strong><input id="Password2" name="Password2" type="password" size="40" class="f-name" /><br /><#ERROR>
</label>
<label for="PasswordHint"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Password Hint</span></strong><input id="PasswordHint" name="Passwordhint" type="text" size="40" class="f-name" value="<#PARAM name="PasswordHint" />"><br />
</label>
```
- ForgotPassword.html
Replace this:
```
<div class="req"><b>*</b> Indicates required field</div>
```
with this:
```
<div class="req" tabindex="0"><strong>*</strong> Indicates required field</div>
```
Replace this:
```
<label for="Username"><span class="field"> <span class="<#VALIDATION>"><b><span class="req">*</span>Username</b></span></span><input id="Username" name="Username" type="text" size="40" class="f-name" value="<#PARAM name='Username'>"><br />
</label>
```
with this:
```
<label for="Username"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Username</span></strong><input id="Username" name="Username" type="text" size="40" class="f-name" value="<#PARAM name='Username'>"><br />
</label>
```
- NewAuthRegistration.html
Replace this:
```
<div class="req"><b>*</b> Indicates required field</div>
```
with this:
```
<div class="req" tabindex="0"><strong>*</strong> Indicates required field</div>
```
Replace this:
```
<label for="FirstName"><b><#ERROR><span class="req">*</span>First Name</b><input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM name='name="FirstName"/'>"><br />
</label>
<label for="LastName"><b><#ERROR><span class="req">*</span>Last Name</b><input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM name='name="LastName"/'>"><br />
</label>
<label for="LibraryID"><b><#ERROR><span class="req">*</span>Library ID/NetID/Some unique campus number</b><input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM name='name="LibraryID"/'>"><br />
</label>
<label for="EMailAddress"><b><#ERROR><span class="req">*</span>EMail Address</b><input id="EMailAddress" name="EMailAddress" type="text" size="40" class="f-name"value="<#PARAM name='name="EmailAddress"/'>"><br />
</label>
<label for="Phone1"><b><#ERROR><span class="req">*</span>Phone Number</b><input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM name='name="Phone1"/'>"><br />
</label>
<label for="Address1"><b><#ERROR><span class="req">*</span>Address</b><input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM name='name="Address1"/'>"><br />
</label>
<label for="Address2"><b><#ERROR>Address 2</b><input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name='name="Address2"/'>">
</label>
<label for="City"><b><#ERROR><span class="req">*</span>City</b><input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM name='name="City"/'>"><br />
</label>
<label for="State"><b><#ERROR><span class="req">*</span>State</b><!--<input id="State" name="State" type="text" size="20" class="f-name" value="<#PARAM name='name="State"/'>"><br />--><#OPTION>" Size="1"><br/>
</label>
<label for="Zip"><b><span class="req">*</span>Zip Code</b><input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM name='name="Zip"/'>"><br />
</label>
<input type="hidden" name="StatusGroup" value="<#PARAM name='name="StatusGroup"/'>">
<!--If you allow the user to change their status -->
<!--
<label for="StatusGroup"><b><#ERROR>Status</b><#OPTION>" Size="1"><br/>
</label>
-->
<label for="Department"><b><#ERROR>Department</b><#OPTION>" Size="1"><br/>
</label>
<label for="CourseEmailDefault"><b><span class="<#VALIDATION>"><b>Default Course Email Subscriptions</b></span></b><fieldset> <label for="automaticsub"> <input id="automaticsub" type="radio" name="CourseEmailDefault" value="1" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="1"/> />Automatic </label> <label for="manualsub"> <input id="manualsub" type="radio" name="CourseEmailDefault" value="0" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="0"/>/>Manual </label></fieldset>
</label>
```
with this:
```
<label for="FirstName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">First Name</span></strong><input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM name='name="FirstName"/'>"><br />
</label>
<label for="LastName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Last Name</span></strong><input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM name='name="LastName"/'>"><br />
</label>
<label for="LibraryID"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Library ID/NetID/Some unique campus number</span></strong><input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM name='name="LibraryID"/'>"><br />
</label>
<label for="EmailAddress"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Email Address</span></strong><input id="EmailAddress" name="EmailAddress" type="text" size="40" class="f-name" value="<#PARAM name='name="EmailAddress"/'>"><br />
</label>
<label for="Phone1"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Phone Number</span></strong><input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM name='name="Phone1"/'>"><br />
</label>
<label for="Address1"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Address</span></strong><input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM name='name="Address1"/'>"><br />
</label>
<label for="Address2"><#ERROR><strong> <span class="<#VALIDATION>">Address 2</span></strong><input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name='name="Address2"/'>">
</label>
<label for="City"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">City</span></strong><input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM name='name="City"/'>"><br />
</label>
<label for="State"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">State</span></strong><!--<input id="State" name="State" type="text" size="20" class="f-name" value="<#PARAM name='name="State"/'>"><br />--><#OPTION>" Size="1"><br/>
</label>
<label for="Zip"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Zip Code</span></strong><input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM name='name="Zip"/'>"><br />
</label>
<input type="hidden" name="StatusGroup" value="<#PARAM name='name="StatusGroup"/'>">
<!--If you allow the user to change their status -->
<!--
<label for="StatusGroup"><#ERROR><strong> <span class="<#VALIDATION>">Status</span></strong><#OPTION>" Size="1"><br/>
</label>
-->
<label for="Department"><#ERROR><strong> <span class="<#VALIDATION>">Department</span></strong><#OPTION>" Size="1"><br/>
</label>
<label for="CourseEmailDefault"><#ERROR><strong> <span class="<#VALIDATION>" tabindex="0">Default Course Email Subscriptions</span></strong><fieldset> <legend class="offscreen">Supply method</legend> <label for="automaticsub"> <input id="automaticsub" type="radio" name="CourseEmailDefault" value="1" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="1"/> />Automatic </label> <label for="manualsub"> <input id="manualsub" type="radio" name="CourseEmailDefault" value="0" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="0"/>/>Manual </label></fieldset>
</label>
```
- ICourseEdit.html
Replace this:
```
<div class="req"><b>*</b> Indicates required field</div>
```
with this:
```
<div class="req"><p tabindex="0"><strong>*</strong> Indicates required field</p></div>
```
Replace this:
```
<!--
<label for="ExternalCourseId"><b><#ERROR>External Course ID</b><input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#COURSE>"><br />
</label>
-->
<label for="CourseName"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Course Name</span></b><input id="CourseName" name="CourseName" type="text" size="40" class="f-name" value="<#COURSE>"><br />
</label>
<label for="CourseNumber"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Course Number</span><br/><span class="note">e.g. MAT-101</span></b><input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#COURSE>"><br />
</label>
<label for="CourseCode"><#ERROR><b><span class="<#VALIDATION>">Section Number/Course Number</span></b><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#COURSE>"><br />
</label>
<label for="Department"><#ERROR><b><span class="<#VALIDATION>"><span class="req">*</span>Department</span></b><#OPTION>" Size="1"><br/>
</label>
<label for="CourseSemester"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Course Semester</span></b><#COURSE><br/>
</label>
<label for="CourseURL"><#ERROR><b><span class="<#VALIDATION>">Course URL</span></b><input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#COURSE>"/><br />
</label>
<label for="CourseEnrollment"><#ERROR><b><span class="<#VALIDATION>">Course Enrollment</span></b><input id="CourseEnrollment" name="CourseEnrollment" type="text" size="20" class="f-name" value="<#COURSE>"/><br />
</label>
<label for="CourseDescription"><#ERROR><b><span class="<#VALIDATION>">Course Description</span></b><textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5"><#COURSE></textarea><br />
</label>
<label for="CourseInstructor"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Course Instructor</span><br/><span class="note">(Last Name, First Name)</span></b><input type="text"" class="f-name" name="CourseInstructor" value="<#COURSE>"/>
</label>
<label for="CoursePassword"><#ERROR><b><span class="<#VALIDATION>">Course Password</span></b><input type="text"" class="f-name" name="CoursePassword" value="<#COURSE>"/>
</label>
```
with this:
```
<label for="CourseName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Name</span></strong><input id="CourseName" name="CourseName" type="text" size="40" class="f-name" value="<#PARAM name='CourseName'>"><br />
</label>
<!--
<label for="ExternalCourseId"><#ERROR><strong> <span class="<#VALIDATION>">External Course ID</span></strong><input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name='name="ExternalCourseID"/'>"><br />
</label>
-->
<label for="CourseNumber"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Number</span><br/> <span class="note">e.g. MAT-101</span></strong><input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#PARAM name='CourseNumber'>"><br />
</label>
<label for="CourseCode"><#ERROR><strong> <span class="<#VALIDATION>">Course Code</span></strong><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>"><br />
</label>
<label for="Department"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Department</span></strong><#OPTION>" Size="1"><br/>
</label>
<label for="Semester"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Semester</span></strong><#OPTION>" class="f-name"><br/>
</label>
<label for="CourseURL"><#ERROR><strong> <span class="<#VALIDATION>">Course URL</span></strong><input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#PARAM name='CourseURL'>"/><br />
</label>
<label for="CourseEnrollment"><#ERROR><strong> <span class="<#VALIDATION>">Course Enrollment</span></strong><input id="CourseEnrollment" name="CourseEnrollment" type="text" size="20" class="f-name" value="<#PARAM name='CourseEnrollment'>"/><br />
</label>
<label for="CourseDescription"><#ERROR><strong> <span class="<#VALIDATION>">Course Description</span></strong><input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name='name="CourseDescription"/'>"/><br />
</label>
<label for="CourseInstructor"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Instructor</span><br/> <span class="note">(Last Name, First Name)</span></strong><input type="text" class="f-name" id="CourseInstructor" name="CourseInstructor" value="<#PARAM name='CourseInstructor'>"/>
</label>
<label for="CoursePassword"><#ERROR><strong> <span class="<#VALIDATION>">Course Password</span></strong><input type="text" id="CoursePassword" class="f-name" name="CoursePassword" value="<#PARAM name='CoursePassword'>"/>
</label>
```
Replace this:
```
<#OPTION>" headerText="<label for='Pickup Location'><b><span class='<#VALIDATION>'>Default Pickup Location for Physical Items</span></b>" footerText="<br /></label>">
```
with this:
```
<#OPTION>" headerText="<label for='PickupLocation'><strong><span class='<#VALIDATION>'>Default Pickup Location for Physical Items</span></strong>" footerText="<br /></label>">
```
- ICourseCrossList.html
Replace this:
```
<div class="req"><b>*</b> Indicates required field</div>
```
with this:
```
<div class="req" tabindex="0"><strong>*</strong> Indicates required field</div>
```
Replace this:
```
<label for="Department"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Cross Listed Department</span></b><#OPTION>" Size="1"><br/>
</label>
<label for="CourseNumber"><#ERROR><b><span class="req">*</span>Cross Listed Course Number<br /><span class="note">e.g. MAT-101</span></b><input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#PARAM name='CourseNumber'>"><br />
</label>
<label for="CourseName"><#ERROR><b>Cross Listed Course Name</b><input id="CourseName" name="CourseName" type="text" size="40" class="f-name" value="<#PARAM name='CourseName'>"><br />
</label>
<label for="CourseCode"><#ERROR><b>Cross Listed Section Number/Course Number</b><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>"><br />
</label>
```
with this:
```
<label for="Department"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Cross Listed Department</span></strong><#OPTION>" Size="1"><br/>
</label>
<label for="CourseNumber"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Cross Listed Course Number</span><br /> <span class="note">e.g. MAT-101</span></strong><input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#PARAM name='CourseNumber'>" /><br />
</label>
<label for="CourseName"><#ERROR><strong> <span class="<#VALIDATION>">Cross Listed Course Name</span></strong><input id="CourseName" name="CourseName" type="text" size="40" class="f-name" value="<#PARAM name='CourseName'>" /><br />
</label>
<label for="CourseCode"><#ERROR><strong> <span class="<#VALIDATION>">Cross Listed Course Code</span></strong><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>" /><br />
</label>
```
- ICourseCreate.html
Replace this:
```
<div class="req"><b>*</b> Indicates required field</div>
```
with this:
```
<div class="req" tabindex="0"><strong>*</strong> Indicates required field</div>
```
Replace this:
```
<#OPTION><#ERROR><b>Instructor’s Username</b>" class="f-name" footerText="<br /></label>"/>
```
with this:
```
<#OPTION><#ERROR><strong><span class='field'>Instructor’s Username</span></strong>" class='f-name' footerText='<br/></label>'>
```
Replace this:
```
<#OPTION><b><span class='<#VALIDATION>'>Default Pickup Location for Physical Items</span></b>" footerText="<br /></label>">
```
with this:
```
<#OPTION>" headerText="<label for='PickupLocation'><strong><span class='<#VALIDATION>'>Default Pickup Location for Physical Items</span></strong>" footerText="<br /></label>">
```
Replace this:
```
<!--
<label for="ExternalCourseId"><b><#ERROR>External Course ID</b><input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name='name="ExternalCourseID"/'>"><br />
</label>
-->
<label for="CourseName"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Course Name</span></b><input id="CourseName" name="CourseName" type="text" size="40" class="f-name" value="<#PARAM name='CourseName'>"><br />
</label>
<label for="CourseNumber"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Course Number</span><br /><span class="note">e.g. MAT-101</span></b><input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#PARAM name='CourseNumber'>"><br />
</label>
<label for="CourseCode"><#ERROR><b><span class="<#VALIDATION>">Section Number/Course Number</span></b><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>"><br />
</label>
<label for="CourseInstructor"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Instructor</span><br/><span class="note">(Last Name, First Name)</span></b><input id="CourseInstructor" name="CourseInstructor" type="text" size="40" class="f-name" value="<#PARAM name='CourseInstructor'>"><br />
</label>
<label for="Department"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Department</span></b><#OPTION><br/>
</label>
<label for="CourseSemester"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Course Semester</span></b><#OPTION><br/>
</label>
<label for="CourseURL"><#ERROR><b><span class="<#VALIDATION>">Course URL</span></b><input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#PARAM name='CourseURL'>"/><br />
</label>
<label for="CourseEnrollment"><#ERROR><b><span class="<#VALIDATION>">Course Enrollment</span></b><input id="CourseEnrollment" name="CourseEnrollment" type="text" size="20" class="f-name" value="<#PARAM name='CourseEnrollment'>"/><br />
</label>
<label for="CourseDescription"><#ERROR><b><span class="<#VALIDATION>">Course Description</span></b><textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5"><#PARAM name='name="CourseDescription"/'></textarea><br />
</label>
<label for="UseCoursePassword"><b>Would you like to use a course password?</b> <select name="UseCoursePassword" class="f-name"> <option selected="selected" value="Yes">Yes</option> <option value="No">No</option> </select>
</label>
<label for="CoursePassword"><#ERROR><b><span class="<#VALIDATION>">If yes, what will the password be?</span></b><input type="text" class="f-name" name="CoursePassword" value="<#PARAM name='CoursePassword'>"/>
</label>
<label for="AddAuthorizedUsers"><b>Student IDs<br/><span class="note">Student ID Numbers should be separated by new lines.</span></b><textarea name="AddAuthorizedUsers" id="AddAuthroizedUsers" cols="20" rows="15"><#PARAM name='name="AddAuthorizedUsers"/'></textarea>
</label>
```
with this:
```
<!--
<label for="ExternalCourseId"><#ERROR><strong> <span class="<#VALIDATION>">External Course ID</span></strong><input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name='name="ExternalCourseID"/'>"><br />
</label>
-->
<label for="CourseName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Name</span></strong><input id="CourseName" name="CourseName" type="text" size="40" class="f-name" value="<#PARAM name='CourseName'>"><br />
</label>
<label for="CourseNumber"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Number</span><br /> <span class="note">e.g. MAT-101</span></strong><input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#PARAM name='CourseNumber'>" /><br />
</label>
<label for="CourseCode"><#ERROR><strong> <span class="<#VALIDATION>">Course Code</span></strong><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>"><br />
</label>
<label for="CourseInstructor"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Instructor</span><br/> <span class="note">(Last Name, First Name)</span></strong><input id="CourseInstructor" name="CourseInstructor" type="text" size="40" class="f-name" value="<#PARAM name='CourseInstructor'>" /><br />
</label>
<label for="Department"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Department</span></strong><#OPTION><br/>
</label>
<label for="CourseSemester"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Semester</span></strong><#OPTION><br/>
</label>
<label for="CourseURL"><#ERROR><strong> <span class="<#VALIDATION>">Course URL</span></strong><input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#PARAM name='CourseURL'>"/><br />
</label>
<label for="CourseEnrollment"><#ERROR><strong> <span class="<#VALIDATION>">Course Enrollment</span></strong><input id="CourseEnrollment" name="CourseEnrollment" type="text" size="20" class="f-name" value="<#PARAM name='CourseEnrollment'>"/><br />
</label>
<label for="CourseDescription"><#ERROR><strong> <span class="<#VALIDATION>">Course Description</span></strong><input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name='name="CourseDescription"/'>"/><br />
</label>
<label for="UseCoursePassword"><strong>Would you like to use a course password?</strong><select id="UseCoursePassword" name="UseCoursePassword" class="f-name"> <option selected="selected" value="Yes">Yes</option> <option value="No">No</option></select>
</label>
<label for="CoursePassword"><#ERROR><strong> <span class="<#VALIDATION>">If yes, what will the password be?</span></strong><input type="text" class="f-name" id="CoursePassword" name="CoursePassword" value="<#PARAM name='CoursePassword'>"/>
</label>
<label for="AddAuthorizedUsers"><strong>Student IDs<br/> <span class="note">Student ID Numbers should be separated by new lines.</span></strong><textarea name="AddAuthorizedUsers" id="AddAuthorizedUsers" cols="20" rows="15"><#PARAM name='name="AddAuthorizedUsers"/'></textarea>
</label>
```
- ICourseClone.html
Replace this:
```
<div class="req"><b>*</b> Indicates required field</div>
```
with this:
```
<div class="req" tabindex="0"><strong>*</strong> Indicates required field</div>
```
Replace this:
```
<#OPTION>" headerText="<b><span class='<#VALIDATION>'>Default Pickup Location for Physical Items</span>/b>">
```
with this:
```
<#OPTION>" headerText="<strong><span class='<#VALIDATION>'>Default Pickup Location for Physical Items</span></strong>">
```
Replace this:
```
<!--
<label for="ExternalCourseId"><b><#ERROR>External Course Id</b><input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name='name="ExternalCourseID"/'>"><br />
</label>
-->
<label for="CourseName"><#ERROR><b><span class="req">*</span>Course Name</b><input type="text" class="f-name" id="CourseName" name="CourseName" value="<#COURSE>" size="40"><br />
</label>
<label for="CourseNumber"><#ERROR><b><span class="req">*</span>Course Number</b><input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#COURSE>"><br />
</label>
<label for="CourseCode"><#ERROR><b>Section Number/Course Number</b><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#COURSE>"><br />
</label>
<label for="CourseInstructor"><#ERROR><b><span class="req">*</span>Instructor</b><input id="CourseInstructor" name="CourseInstructor" type="text" size="40" class="f-name" value="<#COURSE>"><br />
</label>
<label for="Department"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Department</span></b><#OPTION>" Size="1"><br/>
</label>
<label for="CourseSemester"><#ERROR><b><span class="req">*</span>Course Semester<br/><span class="note">Choose the semester when you will be teaching this course again</span></b><#OPTION><br/>
</label>
<label for="CourseURL"><#ERROR><b>Course URL</b><input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#COURSE>"/><br />
</label>
<label for="CourseDescription"><#ERROR><b>Course Description</b><textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5"><#COURSE></textarea><br />
</label>
<label for="CoursePassword"><#ERROR><b>Course Password<br/><span class="note">If you do not want a password for this course, leave the field blank.</span></b><input id="CoursePassword" name="CoursePassword" type="text" size="20" class="f-name" value="<#COURSE>"/><br />
</label>
<label for='Pickup Location'><#OPTION>" headerText="<b><span class='<#VALIDATION>'>Default Pickup Location for Physical Items</span></b>"><br />
</label>
<label for="CloneItemTags"><#ERROR><b>Clone Item Tags</b><input type="checkbox" id="CloneItemTags" name="CloneItemTags" class="f-checkbox" /><br />
</label>
```
with this:
```
<!--
<label for="ExternalCourseId"><#ERROR><strong> <span class="<#VALIDATION>">External Course Id</span></strong><input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name='name="ExternalCourseID"/'>"><br />
</label>
-->
<label for="CourseName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Name</span></strong><input type="text" class="f-name" id="CourseName" name="CourseName" value="<#PARAM name='name=CourseName'>" size="40" /><br />
</label>
<label for="CourseNumber"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Number</span></strong><input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#PARAM name='coursenumber'>" /><br />
</label>
<label for="CourseCode"><#ERROR><strong> <span class="<#VALIDATION>">Course Code</span></strong><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>" /><br />
</label>
<label for="CourseInstructor"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Instructor</span></strong><input id="CourseInstructor" name="CourseInstructor" type="text" size="40" class="f-name" value="<#PARAM name='CourseInstructor'>" /><br />
</label>
<label for="Department"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Department</span></strong><#OPTION>" Size="1"><br/>
</label>
<label for="Semester"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Course Semester</span><br/> <span class="note">Choose the semester when you will be teaching this course again</span></strong><#OPTION><br/>
</label>
<label for="CourseURL"><#ERROR><strong> <span class="<#VALIDATION>">Course URL</span></strong><input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#PARAM name='CourseURL'>"/><br />
</label>
<label for="CourseDescription"><#ERROR><strong> <span class="<#VALIDATION>">Course Description</span></strong><input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name='name="CourseDescription"/'>"/><br />
</label>
<label for="CoursePassword"><#ERROR><strong> <span class="<#VALIDATION>">Course Password</span><br/> <span class="note">If you do not want a password for this course, leave the field blank.</span></strong><input id="CoursePassword" name="CoursePassword" type="text" size="20" class="f-name" value="<#PARAM name='CoursePassword'>"/><br />
</label>
<label for='PickupLocation'><#ERROR><#OPTION>" headerText="<strong><span class='<#VALIDATION>'>Default Pickup Location for Physical Items</span></strong>"><br />
</label>
<label for="CloneItemTags"><#ERROR><strong> <span class="<#VALIDATION>">Clone Item Tags</span><br/></strong><input type="checkbox" id="CloneItemTags" name="CloneItemTags" class="f-checkbox" /><br />
</label>
```
- ICourseMessageBoardNewReply.html
Replace this:
```
<div class="req"><b>*</b> Indicates required field</div>
```
with this:
```
<div class="req" tabindex="0"><strong>*</strong> Indicates required field</div>
```
Replace this:
```
<b><span class="req">*</span>Message</b>
```
with this:
```
<strong><span class="req">*</span>Message</strong>
```
- ICourseMessageBoardNewThread.html
Replace this:
```
<div class="req"><b>*</b> Indicates required field</div>
```
with this:
```
<div class="req" tabindex="0"><strong>*</strong> Indicates required field</div>
```
Replace this:
```
<b><span class="req">*</span>Subject</b>
```
with this:
```
<strong><span class="req">*</span>Subject</strong>
```
Replace this:
```
<b><span class="req">*</span>Message</b>
```
with this:
```
<strong><span class="req">*</span>Message</strong>
```
- IItemInfo.html
Replace this:
```
<b>Instructor Tags<br/><span class="note">Comma separated list of tags to be assigned to this Item<span>
</b>
```
with this:
```
<strong>Instructor Tags<br/><span class="note">Comma separated list of tags to be assigned to this Item<span>
</strong>
```
Replace this:
```
<b>Personal Tags<br/><span class="note">Comma separated list of tags to be assigned to this Item<span>
</b>
```
with this:
```
<strong>Personal Tags<br/><span class="note">Comma separated list of tags to be assigned to this Item<span>
</strong>
```
- ISharedListEdit.html
Replace this:
```
<div class="req"><b>*</b> Indicates required field</div>
```
with this:
```
<div class="req" tabindex="0"><strong>*</strong> Indicates required field</div>
```
Replace this:
```
<#OPTION><#ERROR><b>Instructor’s Username</b>" class="f-name" ooterText="<br /></label>"/>
```
with this:
```
<#OPTION><#ERROR><strong>Instructor’s Username</strong>" class="f-name" footerText="<br /></label>"/>
```
Replace this:
```
<label for="SharedListName"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Shared List Name</span></b><input id="SharedListName" name="SharedListName" type="text" size="40" class="f-name" value="<#SHAREDLIST>"><br />
</label>
```
with this:
```
<label for="SharedListName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Shared List Name</span></strong><input id="SharedListName" name="SharedListName" type="text" size="40" class="f-name" value="<#SHAREDLIST>"><br />
</label>
```
- ISharedListCreate.html
Replace this:
```
<div class="req"><b>*</b> Indicates required field</div>
```
with this:
```
<div class="req" tabindex="0"><strong>*</strong> Indicates required field</div>
```
Replace this:
```
<#OPTION><#ERROR><b>Instructor’s Username</b>" class="f-name" footerText="<br /></label>"/>
```
with this:
```
<#OPTION><#ERROR><strong>Instructor’s Username</strong>" class="f-name" footerText="<br /></label>"/>
```
Replace this:
```
<label for="SharedListName"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Shared List Name</span></b><input id="SharedListName" name="SharedListName" type="text" size="40" class="f-name" value="<#PARAM name='SharedListName'>"><br />
</label>
```
with this:
```
<label for="SharedListName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Shared List Name</span></strong><input id="SharedListName" name="SharedListName" type="text" size="40" class="f-name" value="<#PARAM name='SharedListName'>"><br />
</label>
```
- GCreateAccount.html
Replace this:
```
<div class="req"><b>*</b> Indicates required field</div>
```
with this:
```
<div class="req" tabindex="0"><strong>*</strong> Indicates required field</div>
```
Replace this:
```
<label for="Username"><span class="<#VALIDATION>"><b><span class="req">*</span>Username</b></span><span class="fade" id="usernamespan" name="usernamespan"></span><input id="Username" name="UserName" onBlur="checkUniqueUsername(this.value); return false;" type="text" size="40" class="f-name" value="<#PARAM name='Name="Username"/'>"><br />
</label>
<label for="FirstName"><span class="<#VALIDATION>"><b><span class="req">*</span>First Name</b></span><input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM name='Name="FirstName"/'>"><br />
</label>
<label for="Last Name"><span class="<#VALIDATION>"><b><span class="req">*</span>Last Name</b></span><input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM name='Name="LastName"/'>"><br />
</label>
<label for="LibraryID"><span class="<#VALIDATION>"><b><span class="req">*</span>Library ID</b></span><input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM name='Name="LibraryID"/'>"><br />
</label>
<label for="EMailAddress"><span class="<#VALIDATION>"><b><span class="req">*</span>E-mail Address</b></span><input id="EMailAddress" name="EMailAddress" type="text" size="40" class="f-name" value="<#PARAM name='Name="EmailAddress"/'>"><br />
</label>
<label for="Phone1"><span class="<#VALIDATION>"><b><span class="req">*</span>Phone Number</b></span><input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM name='Name="Phone1"/'>"><br />
</label>
<label for="Address1"><span class="<#VALIDATION>"><b><span class="req">*</span>Address</b></span><input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM name='Name="Address1"/'>"><br />
</label>
<label for="Address2"><b>Address 2</b><input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name='NAME="Address2"/'>">
</label>
<label for="City"><span class="<#VALIDATION>"><b><span class="req">*</span>City</b></span><input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM name='Name="City"/'>"><br />
</label>
<label for="State"><span class="<#VALIDATION>"><b><span class="req">*</span>State</b></span><#OPTION>" Size="1"><br/>
</label>
<label for="Zip"><span class="<#VALIDATION>"><b><span class="req">*</span>Zip Code</b></span><input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM name='Name="Zip"/'>"><br />
</label>
<label for="StatusGroup"><span class="<#VALIDATION>"><b><span class="req">*</span>Status</b></span><#OPTION>" Size="1"><br/>
</label>
<label for="Department"><span class="<#VALIDATION>"><b><span class="req">*</span>Department</b></span><#OPTION>" Size="1"><br/>
</label>
<label for="Password1"><span class="<#VALIDATION>"><b><span class="req">*</span>Password</b></span><input id="Password1" name="Password1" type="password" size="40" class="f-name" value="<#PARAM name='Name="Password1"/'>"><br />
</label>
<label for="Password2"><span class="<#VALIDATION>"><b><span class="req">*</span>Confirm Password</b></span><input id="Password2" name="Password2" type="password" size="40" class="f-name" value="<#PARAM name='Name="Password2"/'>"><br />
</label>
<label for="PasswordHint"><b>Password Hint</b><input id="PasswordHint" name="PasswordHint" type="text" size="40" class="f-name" value="<#PARAM name='Name="PasswordHint"/'>"><br />
</label>
<label for="CourseEmailDefault"><b><span class="<#VALIDATION>"><b>Default Course Email Subscriptions</b></span></b> <fieldset> <label for="automaticsub"> <input id="automaticsub" type="radio" name="CourseEmailDefault" value="1" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="1"/> />Automatic </label> <label for="manualsub"> <input id="manualsub" type="radio" name="CourseEmailDefault" value="0" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="0"/>/>Manual </label> </fieldset>
</label>
```
with this:
```
<label for="Username"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Username</span></strong><span class="fade" id="usernamespan" name="usernamespan"></span><input id="Username" name="UserName" onBlur="checkUniqueUsername(this.value); return false;" type="text" size="40" class="f-name" value="<#PARAM name='Name="Username"/'>"><br />
</label>
<label for="FirstName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">First Name</span></strong><input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM name='Name="FirstName"/'>"><br />
</label>
<label for="LastName"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Last Name</span></strong><input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM name='Name="LastName"/'>"><br />
</label>
<label for="LibraryID"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Library ID</span></strong><input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM name='Name="LibraryID"/'>"><br />
</label>
<label for="EmailAddress"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Email Address</span></strong><input id="EmailAddress" name="EmailAddress" type="text" size="40" class="f-name" value="<#PARAM name='Name="EmailAddress"/'>"><br />
</label>
<label for="Phone1"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Phone Number</span></strong><input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM name='Name="Phone1"/'>"><br />
</label>
<label for="Address1"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Address</span></strong><input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM name='Name="Address1"/'>"><br />
</label>
<label for="Address2"><#ERROR><strong> <span class="<#VALIDATION>">Address 2</span></strong><input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name='name="Address2"/'>"><br />
</label>
<label for="City"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">City</span></strong><input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM name='Name="City"/'>"><br />
</label>
<label for="State"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">State</span></strong><#OPTION>" Size="1"><br/>
</label>
<label for="Zip"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Zip Code</span></strong><input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM name='Name="Zip"/'>"><br />
</label>
<label for="StatusGroup"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Status</span></strong><#OPTION>" Size="1"><br/>
</label>
<label for="Department"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Department</span></strong><#OPTION>" Size="1"><br/>
</label>
<label for="Password1"><strong> <span class="req">*</span> <span class="<#VALIDATION>">Password</span></strong><input id="Password1" name="Password1" type="password" size="40" class="f-name" value="<#PARAM name='Name="Password1"/'>"><br /><#ERROR>
</label>
<label for="Password2"><strong> <span class="req">*</span> <span class="<#VALIDATION>">Confirm Password</span></strong><input id="Password2" name="Password2" type="password" size="40" class="f-name" value="<#PARAM name='Name="Password2"/'>"><br /><#ERROR>
</label>
<label for="PasswordHint"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Password Hint</span></strong><input id="PasswordHint" name="Passwordhint" type="text" size="40" class="f-name" value="<#PARAM name="PasswordHint" />"><br />
</label>
<label for="CourseEmailDefault"><strong> <span class="<#VALIDATION>" tabindex="0">Default Course Email Subscriptions</span></strong><fieldset> <legend class="offscreen">Course email subscription options</legend> <label for="automaticsub"> <input id="automaticsub" type="radio" name="CourseEmailDefault" value="1" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="1"/> />Automatic </label> <label for="manualsub"> <input id="manualsub" type="radio" name="CourseEmailDefault" value="0" class="f-radio" <#PARAM name="SELECTED" Identifier="CourseEmailDefault" Value="0"/>/>Manual </label></fieldset>
</label>
```
- GLogon.html
Replace this:
```
<div class="req"><b>*</b> Indicates required field</div>
```
with this:
```
<div class="req" tabindex="0"><strong>*</strong> Indicates required field</div>
```
Replace this:
```
<label for="username"><b><span class="req">*</span>Username:</b><input id="username" name="username" type="text" class="f-name" /><br />
</label>
<label for="password"><b><span class="req">*</span>Password:</b><input id="password" name="password" type="password" class="f-name" /><br />
</label>
```
with this:
```
<label for="username"><strong> <span class="req">*</span> <span>Username:</span></strong><input id="username" name="username" type="text" class="f-name" /><br />
</label>
<label for="password"><strong> <span class="req">*</span>Password:</strong><input id="password" name="password" type="password" class="f-name" /><br />
</label>
```
- GLogon2.html
Replace this:
```
<div class="req"><b>*</b> Indicates required field</div>
```
with this:
```
<div class="req" tabindex="0"><strong>*</strong> Indicates required field</div>
```
Replace this:
```
<label for="username"><b><span class="req">*</span>Username:</b><input id="username" name="username" type="text" class="f-name" /><br />
</label>
<label for="password"><b><span class="req">*</span>Password:</b><input id="password" name="password" type="password" class="f-name" /><br />
</label>
```
with this:
```
<label for="username"><strong> <span class="req">*</span> <span>Username:</span></strong><input id="username" name="username" type="text" class="f-name" /><br />
</label>
<label for="password"><strong> <span class="req">*</span>Password:</strong><input id="password" name="password" type="password" class="f-name" /><br />
</label>
```
- UItemInfo.html
Replace this:
```
<b>Personal Tags<br/><span class="note">Comma separated list of tags to be assigned to this Item<span>
</b>
```
with this:
```
<strong>Personal Tags<br/><span class="note">Comma separated list of tags to be assigned to this Item<span>
</strong>
```
- UCourseMessageBoardNewReply.html
Replace this:
```
<div class="req"><b>*</b> Indicates required field</div>
```
with this:
```
<div class="req" tabindex="0"><strong>*</strong> Indicates required field</div>
```
Replace this:
```
<b><span class="req">*</span>Message</b>
```
with this:
```
<strong><span class="req">*</span>Message</strong>
```
- UCourseMessageBoardNewThread.html
Replace this:
```
<div class="req"><b>*</b> Indicates required field</div>
```
with this:
```
<div class="req" tabindex="0"><strong>*</strong> Indicates required field</div>
```
Replace this:
```
<b><span class="req">*</span>Subject</b>
```
with this:
```
<strong><span class="req">*</span>Subject</strong>
```
Replace this:
```
<b><span class="req">*</span>Message</b>
```
with this:
```
<strong><span class="req">*</span>Message</strong>
```
Page Title
The page title of all the default web pages was edited to be more consistent and clear. Changes were made on the following pages:
- AboutAres.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>About Ares</title>
```
- GSearchResults.html
Replace this:
```
<title>Ares - Automating Reserves</title>
```
with this:
```
<title>Ares - Item Search Results</title>
```
- IActiveCourseList.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Courses</title>
```
- IApplySharedList.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Apply Shared List</title>
```
- ViewItemNotificationsDetail.html
Replace this:
```
<title>Ares</title>
```
with this:
```
<title>Ares - Item Notifications</title>
```
- ViewNotifications.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - User Notifications</title>
```
- ViewNotificationsDetail.html
Replace this:
```
<title>Ares</title>
```
with this:
```
<title>Ares - Notification</title>
```
- IItemDelete.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Item Deletion</title>
```
- IItemInfo.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Item <#ITEM></title>
```
- IItemUsage.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Reserve Item Usage</title>
```
- UCourseDelete.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Course Deletion</title>
```
- UCourseInfo.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Course <#COURSE></title>
```
- UCourseMessageBoard.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Course <#COURSE> Message Board</title>
```
- UCourseMessageBoardNewReply.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Course <#COURSE> Message Board</title>
```
- UCourseMessageBoardNewThread.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Course <#COURSE> Message Board</title>
```
- UCourseMessageBoardThread.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Course <#COURSE> Message Board</title>
```
- UCoursePassword.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Create Course</title>
```
- UCourseResults.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Course Search Results</title>
```
- UCourseTags.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Course <#COURSE> Tags</title>
```
- UHome.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Main Menu</title>
```
- UHotList.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - <#CUSTOMIZATION></title>
```
- UItemInfo.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Item <#ITEM></title>
```
- USearch.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Search</title>
```
- USearchCourse.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Course Search</title>
```
- USearchResults.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Search Results</title>
```
- ICourseImportItems.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Import Course Items</title>
```
- ICourseImportItemsToSharedList.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Import Shared List Items</title>
```
- ICourseMessageBoard.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - <#COURSE> Message Board</title>
```
- ICourseMessageBoardNewReply.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - <#COURSE> Message Board</title>
```
- ICourseMessageBoardNewThread.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - <#COURSE> Message Board</title>
```
- ICourseMessageBoardThread.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - <#COURSE> Message Board</title>
```
- ICourseProxyUsers.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Course <#COURSE> Proxy Users</title>
```
- ICourseTags.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Course <#COURSE> Tags</title>
```
- ICourseUsage.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Course <#COURSE> Reserve Item Usage</title>
```
- IHome.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Main Menu</title>
```
- IInstructorSharedLists.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Shared Lists</title>
```
- ICourseInfo.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Course <#COURSE></title>
```
- ICourseEdit.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Edit Course <#COURSE></title>
```
- ICourseCrossList.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Cross Listings for Course <#COURSE></title>
```
- ICourseCreate.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Create Course</title>
```
- ICourseClone.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Clone Course</title>
```
- ICourseAuthUsers.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Authorized Users for Course <#COURSE></title>
```
- IUploadForm.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Upload Form</title>
```
- IUploadSharedListItemForm.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Upload Form</title>
```
- NewPassword.html
Replace this:
```
<title>Ares - Change Password</title>
```
with this:
```
<title>Ares - Change Password</title>
```
- NewAuthRegistration.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - User Registration</title>
```
- ChangePassword.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Change User Password</title>
```
- ChangeUserInformation.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Change User Information</title>
```
- ForgotPassword.html
Replace this:
```
<title>Ares - Change Password</title>
```
with this:
```
<title>Ares - Forgot Password</title>
```
- GCreateAccount.html
Replace this:
```
<title>Ares</title>
```
with this:
```
<title>Ares - Create Account</title>
```
- GLogon.html
Replace this:
```
<title>Ares - Automating Reserves</title>
```
with this:
```
<title>Ares - Logon</title>
```
- GLogon2.html
Replace this:
```
<title>Ares - Automating Reserves</title>
```
with this:
```
<title>Ares - Logon</title>
```
- GSearchResults.html
Replace this:
```
<title>Ares - Automating Reserves</title>
```
with this:
```
<title>Ares - Item Search Results</title>
```
- IPreviousCourseList.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Previous Courses</title>
```
- IProxyUsers.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Proxy Users</title>
```
- ISearchResults.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Item Search Results</title>
```
- ISharedListCreate.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Create Shared List</title>
```
- ISharedListEdit.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Edit Shared List <#SHAREDLIST></title>
```
- ISharedListInfo.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Shared List <#SHAREDLIST></title>
```
- ISharedListItemInfo.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Shared List Item <#SHAREDLISTITEM></title>
```
- IRFArticle.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Reserve Article</title>
```
- IRFAudio.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Reserve Audio</title>
```
- IRFBook.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Reserve Book</title>
```
- IRFBookChapter.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Reserve Book Chapter</title>
```
- IRFCreate.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Create Reserve Item</title>
```
- IRFEditArticle.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Edit Item <#ITEM></title>
```
- IRFEditAudio.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Edit Item <#ITEM></title>
```
- IRFEditBook.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Edit Item <#ITEM></title>
```
- IRFEditBookChapter.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Edit Item <#ITEM></title>
```
- IRFEditCreate.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Edit Item <#ITEM></title>
```
- IRFEditInstructorUpload.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Item Upload</title>
```
- IRFEditVideo.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Edit Item <#ITEM></title>
```
- IRFInstructorUpload.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Item Upload</title>
```
- IRFMenu.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Reserve Item</title>
```
- IRFOpenURLArticle.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Reserve Article</title>
```
- IRFOpenURLBook.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Reserve Book</title>
```
- IRFVideo.html
replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Reserve Video</title>
```
- ISLRFArticle.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Create Shared List Item - Article</title>
```
- ISLRFAudio.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Create Shared List Item - Audio</title>
```
- ISLRFBook.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Create Shared List Item - Book</title>
```
- ISLRFBookChapter.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Create Shared List Item - Book Chapter</title>
```
- ISLRFCreate.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Create Shared List Item</title>
```
- ISLRFEditArticle.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Edit Shared List Item <#SHAREDLISTITEM></title>
```
- ISLRFEditAudio.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Edit Shared List Item <#SHAREDLISTITEM></title>
```
- ISLRFEditBook.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Edit Shared List Item <#SHAREDLISTITEM></title>
```
- ISLRFEditBookChapter.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Edit Shared List Item <#SHAREDLISTITEM></title>
```
- ISLRFEditCreate.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Edit Shared List Item <#SHAREDLISTITEM></title>
```
- ISLRFEditInstructorUpload.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Edit Shared List Item <#SHAREDLISTITEM></title>
```
- ISLRFEditVideo.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Edit Shared List Item <#SHAREDLISTITEM></title>
```
- ISLRFInstructorUpload.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Upload Shared List Item</title>
```
- ISLRFMenu.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Add Shared List Item</title>
```
- ISLRFOpenURLArticle.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Create Shared List Item</title>
```
- ISLRFOpenURLBook.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Create Shared List Item</title>
```
- ISLRFVideo.html
Replace this:
```
<title>Ares - <#USER></title>
```
with this:
```
<title>Ares - Create Shared List Item</title>
```
Increasing Header Size
Headers were made bigger on many pages to increase readability. Changes were made on the following pages:
- main.css
Replace this:
```
form.f-wrap-detail h3 {margin:0 0 .6em;font: bold 155% arial;color:#c00}
form.f-wrap-detail h2 {margin:.6em 0 .6em;font: bold 155% arial;color:#000066}
```
with this:
```
form.f-wrap-detail h3 {margin:0 0 .6em;font: bold arial;color:#c00}
form.f-wrap-detail h2, fieldset legend {margin:.6em 0 .6em;font: bold arial;color:#000066}
```
Replace this:
```
form.f-wrap-request h3 {margin:0 0 .6em;font: bold 155% arial;color:#c00}
form.f-wrap-request h2 {margin:.6em 0 .6em;font: bold 155% arial;color:#000066}
```
with this:
```
form.f-wrap-request h3 {margin:0 0 .6em;font: bold arial;color:#c00}
form.f-wrap-request h2, fieldset legend {margin:.6em 0 .6em;font: bold arial;color:#000066}
```
Replace this:
```
/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {letter-spacing: -1px;font-family: arial,verdana,sans-serif;margin: 1.2em 0 .3em;color:#000;border-bottom: 1px solid #eee;padding-bottom: .1em}
h1 {font-size: 196%;margin-top:.6em}
h2 {font-size: 136%}
h3 {font-size: 126%}
h4 {font-size: 116%}
h5 {font-size: 106%}
```
with this:
```
/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6, fieldset legend {letter-spacing: -1px;font-family:arial,verdana,sans-serif;margin: 1.2em 0 .3em;color:#000;border-bottom: 1px solid #eee;padding-bottom: .1em}
h1 {font-size: 150%;margin-top:.6em}
h2, fieldset legend {font-size: 135%}
h3 {font-size: 125%}
h4 {font-size: 115%}
h5 {font-size: 105%}
```
Replace this:
```
#search {color:#000066;font-weight:bold;position:absolute;top:17px;right:10px}
```
with this:
```
#search {color:#000066;font-weight:bold;position:absolute;top:35px;right:10px}
```
- GSearchResults.html
Replace this:
```
<h3>New to Ares?</h3>
```
with this:
```
<h2>New to Ares?</h2>
```
Replace this:
```
<h3>A Static Alert</h3>
```
with this:
```
<h2>A Static Alert</h2>
```
- IItemUsage.html
Replace this:
```
<h3>Detailed Reserve Usage</h3>
```
with this:
```
<h1>Detailed Reserve Usage</h1>
```
- UCourseDelete.html
Replace this:
```
<h2>Are you sure you want to remove this course?</h2>
```
with this:
```
<h1>Are you sure you want to remove this course?</h1>
```
- UCourseMessageBoard.html
Replace this:
```
<h2>Message Board for <#COURSE></h2>
```
with this:
```
<h1>Message Board for <#COURSE></h1>
```
- UCourseMessageBoardNewReply.html
Replace this:
```
<h3>Reply to <#BOARD></h3>
```
with this:
```
<h1 tabindex="0">Reply to <#BOARD></h1>
```
- UCourseMessageBoardNewThread.html
Replace this:
```
<h3>New topic for <#COURSE></h3>
```
with this:
```
<h1 tabindex="0"New topic for <#COURSE></h1>
```
- UCourseMessageBoardThread.html
Replace this:
```
<h2>Message Board for <#COURSE></h2>
```
with this:
```
<h1>Message Board for <#COURSE></h1>
```
- UHome.html
Replace this:
```
<h3>Main Menu</h3>
```
with this:
```
<h1>Main Menu</h1>
```
Replace this:
```
<#TAGCLOUD>My Tags</h4>" footerText="<br />" /><br/>
```
with this:
```
<#TAGCLOUD>My Tags</h2>" footerText="<br />" /><br/>
```
- ICourseImportItems.html
Replace this:
```
<h4>Choose reserve items you wish to import:</h4>
```
with this:
```
<h2>Choose reserve items you wish to import</h2>
```
- ICourseImportItemsToSharedList.html
Replace this:
```
<h4>Choose reserve items you wish to import:</h4>
```
with this:
```
<h2>Choose reserve items you wish to import</h2>
```
- ICourseMessageBoard.html
Replace this:
```
<h2>Message Board for <#COURSE></h2>
```
with this:
```
<h1>Message Board for <#COURSE></h1>
```
- ICourseMessageBoardNewReply.html
Replace this:
```
<h3>Reply to <#BOARD></h3>
```
with this:
```
<h1 tabindex="0">Reply to <#BOARD></h1>
```
- ICourseMessageBoardNewThread.html
Replace this:
```
<h3>New topic for <#COURSE></h3>
```
with this:
```
<h1 tabindex="0">New topic for <#COURSE></h1>
```
- ICourseMessageBoardThread.html
Replace this:
```
<h2>Message Board for <#COURSE></h2>
```
with this:
```
<h1>Message Board for <#COURSE></h1>
```
- ICourseProxyUsers.html
Replace this:
```
<h3>Course Proxy Users</h3>
```
with this:
```
<h1 tabindex="0">Course Proxy Users</h1>
```
- ICourseUsage.html
Replace this:
```
<h3>Reserve Usage for <#COURSE></h3>
```
with this:
```
<h1>Reserve Usage for <#COURSE></h1>
```
- IHome.html
Replace this:
```
<h3>Main Menu</h3>
```
with this:
```
<h1>Main Menu</h1>
```
- ICourseEdit.html
Replace this:
```
<h3>Edit Course: <#COURSE></h3>
```
with this:
```
<h1 tabindex="0">Edit Course: <#COURSE></h1>
```
Replace this:
```
<h4>Course Information</h4>
```
with this:
```
<h2 tabindex="0">Course Information</h2>
```
- ICourseCrossList.html
Replace this:
```
<h2>Cross Listings</h2>
```
with this:
```
<h1>Cross Listings for Course <#COURSE></h1>
```
Replace this:
```
<h3>Add a cross-listing</h3>
```
with this:
```
<h2 tabindex="0">Add a cross-listing</h2>
```
- ICourseCreate.html
Replace this:
```
<h3>Create a Course </h3>
```
with this:
```
<h1 tabindex="0">Create a Course</h1>
```
Replace this:
```
<h4>Course Information</h4>
```
with this:
```
<h3 tabindex="0">Course Information</h3>
```
- ICourseClone.html
Replace this:
```
<h3>Clone course: <#COURSE></h3>
```
with this:
```
<h2 tabindex="0">Clone course: <#COURSE></h2>
```
Replace this:
```
<h4>New Course</h4>
```
with this:
```
<h3 tabindex="0">New Course</h3>
```
- NewPassword.html
Replace this:
```
<h3>Reset Password</h3>
```
with this:
```
<h1 tabindex="0">Reset Password</h1>
```
- NewAuthRegistration.html
Replace this:
```
<h3>Change Personal Information</h3>
```
with this:
```
<h1 tabindex="0">Change Personal Information</h1>
```
- ChangePassword.html
Replace this:
```
<h3>Change Password</h3>
```
with this:
```
<h1 tabindex="0">Change Password</h1>
```
- ChangeUserInformation.html
Replace this:
```
<h3>Change User Information</h3>
```
with this:
```
<h1 tabindex="0">Change User Information</h1>
```
- ForgotPassword.html
Replace this:
```
<h3>Forgot Password</h3>
```
with this:
```
<h1 tabindex="0">Forgot Password</h1>
```
- GCreateAccount.html
Replace this:
```
<h3>New Ares Account </h3>
```
with this:
```
<h1>New Ares Account</h1>
```
- GLogon.html
Replace this:
```
<h3>Ares Logon</h3>
```
with this:
```
<h1 tabindex="0">Ares Logon</h1>
```
Replace this:
```
<h3>New to Ares?</h3>
```
with this:
```
<h2>New to Ares?</h2>
```
Replace this:
```
<h3>A Static Alert</h3>
```
with this:
```
<h2>A Static Alert</h2>
```
- GLogon2.html
Replace this:
```
<h3>Ares Logon</h3>
```
with this:
```
<h1 tabindex="0">Ares Logon</h1>
```
Replace this:
```
<h3>New to Ares?</h3>
```
with this:
```
<h2>New to Ares?</h2>
```
Replace this:
```
<h3>A Static Alert</h3>
```
with this:
```
<h2>A Static Alert</h2>
```
- IProxyUsers.html
Replace this:
```
<h3>Full Proxy Users</h3>
```
with this:
```
<h1 tabindex="0">Full Proxy Users</h1>
```
- ISharedListCreate.html
Replace this:
```
<h3>Create a Shared List </h3>
```
with this:
```
<h1 tabindex="0">Create a Shared List</h1>
```
Replace this:
```
<h4>Shared List Information</h4>
```
with this:
```
<h2 tabindex="0">Shared List Information</h2>
```
- ISharedListEdit.html
Replace this:
```
<h3>Edit Shared List: <#SHAREDLIST></h3>
```
with this:
```
<h1 tabindex="0">Edit Shared List: <#SHAREDLIST></h1>
```
Replace this:
```
<h4>Shared List Information</h4>
```
with this:
```
<h2 tabindex="0">Shared List Information</h2>
```
- ISharedListInfo.html
Replace this:
```
<h3>Courses associated with this shared list.</h3>
```
with this:
```
<h2>Courses associated with this shared list.</h2>
```
Adding Headers
Headers were added to many pages to add clarity and structure. Changes were made on the following pages:
- AboutAres.html
Add this line:
```
<h1 class="offscreen">Ares Information</h1>
```
under this:
```
<div id="content-wrap">
<#INCLUDE filename="include_menu.html">
```
- GSearchResults.html
Add this:
```
<h1 class="offscreen">Item Search Results</h1>
```
under this:
```
<div id="content" role="main" tabindex="-1">
```
- IActiveCourseList.html
Add this:
```
<h1 class="offscreen">Active Courses</h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- IApplySharedList.html
Add this:
```
<h1 class="offscreen">Apply Shared List</h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- include_courseproxycoursemenu.html
Add this:
```
<h2 class="offscreen" accesskey="n">Navigation Menu</h2>
```
after this:
```
<div id="utility" role="navigation">
```
- include_fullproxysharedlistmenu.html
Add this:
```
<h2 class="offscreen" accesskey="n">Navigation Menu</h2>
```
after this:
```
<div id="utility" role="navigation">
```
- include_instructorsharedlistmenu.html
Add this:
```
<h2 class="offscreen" accesskey="n">Navigation Menu</h2>
```
after this:
```
<div id="utility" role="navigation">
```
- include_menu.html
Add this:
```
<h2 class="offscreen" accesskey="n">Navigation Menu</h2>
```
after this:
```
<div id="utility" role="navigation">
```
- include_instructorcoursemenu.html
Add this:
```
<h2 class="offscreen" accesskey="n">Navigation Menu</h2>
```
after this:
```
<div id="utility" role="navigation">
```
- include_studentcoursemenu.html
Add this:
```
<h2 class="offscreen" accesskey="n">Navigation Menu</h2>
```
after this:
```
<div id="utility" role="navigation">
```
- ViewItemNotificationsDetail.html
Add this:
```
<h1 class="offscreen">Item Notifications</h1>
```
under this:
```
<div id="content" role="main" tabindex="-1">
```
- ViewNotifications.html
Add this:
```
<h1 class="offscreen">User Notifications</h1>
```
under this:
```
<div id="content" role="main" tabindex="-1">
```
- ViewNotificationsDetail.html
Add this:
```
<h1 class="offscreen">Notification</h1>
```
under this:
```
<div id="content" role="main" tabindex="-1">
```
- IItemDelete.html
Add this:
```
<h1 class="offscreen">Item Deletion</h1>
```
under this:
```
<div id="content" role="main" tabindex="-1">
```
- IItemInfo.html
Add this:
```
<h1 class="offscreen">Item <#ITEM></h1>
```
under this:
```
<div id="content" role="main" tabindex="-1">
```
- UCourseInfo.html
Add this:
```
<h1 class="offscreen">Course <#COURSE></h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- UCoursePassword.html
Add this:
```
<h1 class="offscreen">Create Course</h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- UCourseResults.html
Add this:
```
<h1>Course Search Results</h1>
```
under this:
```
<div id="content" role="main" tabindex="-1">
```
- UCourseTags.html
Add this:
```
<h1 class="offscreen">Course <#COURSE> Tags</h1>
```
under this:
```
<div id="content" role="main" tabindex="-1">
```
- UHotList.html
Add this:
```
<h1 class="offscreen"><#CUSTOMIZATION></h1>
```
under this:
```
<div id="content" role="main" tabindex="-1">
```
- UItemInfo.html
Add this:
```
<h1 class="offscreen"><#CUSTOMIZATION></h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- USearch.html
Add this:
```
<h1 class="offscreen">Search</h1>
```
under this:
```
<div id="content" role="main" tabindex="-1">
```
- USearchCourse.html
Add this:
```
<h1 class="offscreen">Course Search</h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- USearchResults.html
Add this:
```
<h1>Search Results</h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- ICourseImportItems.html
Add this:
```
<h1 class="offscreen">Import Course Items</h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- ICourseImportItemsToSharedList.html
Add this:
```
<h1 class="offscreen">Import Shared List Items</h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- ICourseTags.html
Add this:
```
<h1 class="offscreen">Course <#COURSE> Tags</h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- IInstructorSharedLists.html
Add this:
```
<h1 class="offscreen">Shared Lists</h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- ICourseInfo.html
Add this:
```
<h1 class="offscreen">Course <#COURSE></h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- ICourseClone.html
Add this:
```
<h1 class="offscreen">Clone Course</h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- ICourseAuthUsers.html
Add this:
```
<h1 class="offscreen">Authorized Users for Course <#COURSE></h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- IUploadForm.html
Add this:
```
<h1 class="offscreen">Upload Form</h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- IUploadSharedListItemForm.html
Add this:
```
<h1 class="offscreen">Upload Form</h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- GSearchResults.html
Add this:
```
<h1 class="offscreen">Item Search Results</h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- IPreviousCourseList.html
Add this:
```
<h1 class="offscreen">Item <#ITEM></h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- ISearchResults.html
Add this:
```
<h1>Search Results</h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- ISharedListInfo.html
Add this:
```
<h1 class="offscreen">Shared List <#SHAREDLIST></h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
- ISharedListItemInfo.html
Add this:
```
<h1 class="offscreen">Shared List Item <#SHAREDLISTITEM></h1>
```
after this:
```
<div id="content" role="main" tabindex="-1">
```
Remove Chat Feature
The chat feature has been removed from the Ares web pages and is no longer supported. To remove this feature from your pages, make the following changes:
- include_instructorcoursemenu.html
Delete this line:
```
<li><a href="<#ACTION action="10" form="20">">Chat</a></li>
```
- include_studentcoursemenu.html
Delete this line:
```
<li><a href="<#ACTION action="10" form="20">">Chat</a></li>
```
You can also remove the ICourseChat.html, UCourseChat.html, chat folder (inside the js folder), and chatstyle.css (inside the CSS folder) files from your Ares web folder.
Darker Colors
Colors for wording in the tag cloud, footer, and other places is now slightly darker and easier to see.
- main.css
Replace this:
```
#footer {clear:both;border-top: 1px solid #E3E8EE;padding: 10px 0 30px;font-size:86%;color:#999; text-align: left}
#footer p {margin:0}
#footer a:link {color:#999}
```
with this:
```
#footer {clear:both;border-top: 1px solid #E3E8EE;padding: 10px 0 30px;font-size:86%;color:#555; text-align: left}
#footer p {margin:0}
#footer a:link {color:#555}
```
Replace this:
```
/* TYPOGRAPHY */
.highlight {color:#E17000}
.subdued {color:#999}
.error {color:#c00;font-weight:bold}
.success {color:#390;font-weight:bold}
.caption {color:#999;font-size:11px}
.date {font: bold 82% arial;color:#bbb;display:block;letter-spacing: 1px}
small {font-size:11px}
```
with this:
```
/* TYPOGRAPHY */
.highlight {color:#E17000}
.subdued {color:#555}
.error {color:#c00;font-weight:bold}
.success {color:#206000;font-weight:bold}
.caption {color:#555;font-size:11px}
.date {font: bold 82% arial;color:#bbb;display:block;letter-spacing: 1px}
small {font-size:11px}
.disabledText {color: #555}
```
- tagCloud.css
Replace this:
```
color: #999999; font-size: .8em;
```
with this:
```
color: #595959; font-size: .8em;
```
Text Editor
The text editor, used when Instructors create free text Reserve Items and for message board entries, has been updated and replaced. This editor is compatible with Firefox, Chrome, Safari, and Internet Explorer. Changes have been made on the following pages:
- main.css
Replace this:
```
form.f-wrap-1 label input, form.f-wrap-1 label textarea, form.f-wrap-1 label select {width:15em;float:left;margin-left:10px}
```
with this:
```
form.f-wrap-1 label input, form.f-wrap-1 label select {width:15em;float:left;margin-left:10px}
form.f-wrap-1 label textarea, #cke_message {width:80%;float:left;margin-left:10px}
```
- IRFCreate.html
Replace this:
```
!--For Rich Text Editor-->
<script type="text/javascript" src="js/FCKeditor/fckeditor.js"></script>
<script type="text/javascript"><!--function ReplaceAllTextareas() {// replace all of the textareasvar itemTextArea = document.getElementById("ItemText");var oFCKeditor = new FCKeditor( itemTextArea.name ) ;oFCKeditor.BasePath = "js/FCKeditor/" ;oFCKeditor.ReplaceTextarea();}
function focusIframeOnTab(caller, tabTargetId, callEvent){// If keypress TAB and not SHIFT+TAB if(callEvent.keyCode == 9 && !callEvent.shiftKey)document.getElementById(tabTargetId).contentWindow.focus();}// -->
</script>
```
with this:
```
<script type="text/javascript" src="js/ckeditor/ckeditor.js"></script>
<script type="text/javascript"><!--function focusIframeOnTab(caller, tabTargetId, callEvent){
// If keypress TAB and not SHIFT+TAB if(callEvent.keyCode == 9 && !callEvent.shiftKey)document.getElementById(tabTargetId).contentWindow.focus();}// -->
</script>
```
Replace this:
```
<label for="ItemText"><#ERROR><textarea id="ItemText" name="ItemText" rows="15" cols="80"><#ITEM></textarea><br />
</label>
```
with this:
```
<label for="ItemText"><#ERROR><strong> <span class="<#VALIDATION>" tabindex="0">Item Text</span><br /> <span class="note" tabindex="0">Create the item's content in the free text area below.</span></strong>
</label>
<label><textarea id="ItemText" name="ItemText" rows="15" cols="80"><#PARAM name='ItemText'></textarea><br /><script> CKEDITOR.replace( 'ItemText' );</script>
</label>
```
- IRFEditCreate.html
Replace this:
```
script type="text/javascript" src="js/FCKeditor/fckeditor.js"></script>
<script type="text/javascript">function ReplaceAllTextareas() {// replace all of the textareas var itemTextArea = document.getElementById("ItemText"); if (!$(itemTextArea).attr('disabled')) { var oFCKeditor = new FCKeditor( itemTextArea.name ) ; oFCKeditor.BasePath = "js/FCKeditor/" ; oFCKeditor.ReplaceTextarea(); }}
function focusIframeOnTab(caller, tabTargetId, callEvent){// If keypress TAB and not SHIFT+TAB if(callEvent.keyCode == 9 && !callEvent.shiftKey)document.getElementById(tabTargetId).contentWindow.focus();}
</script>
```
with this:
```
<script type="text/javascript" src="js/ckeditor/ckeditor.js"></script>
<script type="text/javascript">function focusIframeOnTab(caller, tabTargetId, callEvent){
// If keypress TAB and not SHIFT+TAB if(callEvent.keyCode == 9 && !callEvent.shiftKey)document.getElementById(tabTargetId).contentWindow.focus();}
</script>
```
Replace this:
```
<label for="ItemText"><#ERROR><textarea id="ItemText" name="ItemText" rows="15" cols="80"><#ITEM></textarea><br />
</label>
```
with this:
```
<label for="ItemText"><#ERROR><strong> <span class="<#VALIDATION>" tabindex="0">Item Text</span><br /> <span class="note" tabindex="0">Edit the item's content in the free text area below.</span></strong>
</label>
<label><textarea id="ItemText" name="ItemText" rows="15" cols="80"><#PARAM name='ItemText'></textarea><br /><script>CKEDITOR.replace( 'ItemText' );</script>
</label>
```
- ISLRFCreate.html
Replace this:
```
<!--For Rich Text Editor-->
<script type="text/javascript" src="js/FCKeditor/fckeditor.js"></script>
<script type="text/javascript"><!--function ReplaceAllTextareas() { // replace all of the textareas var itemTextArea = document.getElementById("ItemText"); var oFCKeditor = new FCKeditor( itemTextArea.name ) ; oFCKeditor.BasePath = "js/FCKeditor/" ; oFCKeditor.ReplaceTextarea();}function focusIframeOnTab(caller, tabTargetId, callEvent) {// If keypress TAB and not SHIFT+TAB if(callEvent.keyCode == 9 && !callEvent.shiftKey)document.getElementById(tabTargetId).contentWindow.focus();}// -->
</script>
```
with this:
```
<script type="text/javascript" src="js/ckeditor/ckeditor.js"></script>
<script type="text/javascript"><!--function focusIframeOnTab(caller, tabTargetId, callEvent) { // If keypress TAB and not SHIFT+TAB if(callEvent.keyCode == 9 && !callEvent.shiftKey)document.getElementById(tabTargetId).contentWindow.focus();} // -->
</script>
```
Replace this:
```
<label for="ItemText"><#ERROR><textarea id="ItemText" name="ItemText" rows="15" cols="80"><#SHAREDLISTITEM></textarea><br />
</label>
```
with this:
```
<label for="ItemText"><#ERROR><strong> <span class="<#VALIDATION>" tabindex="0">Item Text</span><br /> <span class="note" tabindex="0">Create the item's content in the free text area below.</span></strong>
</label>
<label><textarea id="ItemText" name="ItemText" rows="15" cols="80"><#PARAM name='ItemText'></textarea><br /><script>CKEDITOR.replace( 'ItemText' );</script>
</label>
```
- ISLRFEditCreate.html
Replace this:
```
<script type="text/javascript" src="js/FCKeditor/fckeditor.js"></script>
<script type="text/javascript">
<!--
function ReplaceAllTextareas() {
// replace all of the textareas
var itemTextArea = document.getElementById("ItemText");
var oFCKeditor = new FCKeditor( itemTextArea.name ) ;
oFCKeditor.BasePath = "js/FCKeditor/" ;
oFCKeditor.ReplaceTextarea();
}function focusIframeOnTab(caller, tabTargetId, callEvent) { // If keypress TAB and not SHIFT+TAB if(callEvent.keyCode == 9 && !callEvent.shiftKey)document.getElementById(tabTargetId).contentWindow.focus(); }
// -->
</script>
```
with this:
```
<script type="text/javascript" src="js/ckeditor/ckeditor.js"></script>
<script type="text/javascript"><!--function focusIframeOnTab(caller, tabTargetId, callEvent) {
// If keypress TAB and not SHIFT+TAB if(callEvent.keyCode == 9 && !callEvent.shiftKey)document.getElementById(tabTargetId).contentWindow.focus();}// -->
</script>
```
Replace this:
```
<label for="ItemText"><#ERROR><textarea id="ItemText" name="ItemText" rows="15" cols="80"><#SHAREDLISTITEM></textarea><br />
</label>
```
with this:
```
<label for="ItemText"><#ERROR><strong> <span class="<#VALIDATION>" tabindex="0">Item Text</span><br /> <span class="note" tabindex="0">Edit the item's content in the free text area below.</span></strong>
</label>
<label><textarea id="ItemText" name="ItemText" rows="15" cols="80"><#PARAM name='ItemText'></textarea><br /><script>CKEDITOR.replace( 'ItemText' );</script>
</label>
```
- UCourseMessageBoardNewReply.html
Replace this:
```
<script language="javascript" src="js/tiny_mce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript">
tinyMCE.init({mode : "textareas",theme : "simple",plugins : "table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,zoom,flash,searchreplace,print,contextmenu",theme_advanced_buttons1_add : "fontselect,fontsizeselect",theme_advanced_buttons2_add : "separator,insertdate,inserttime,preview,zoom,separator,forecolor,backcolor",theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator",theme_advanced_buttons3_add_before : "tablecontrols,separator",theme_advanced_buttons3_add : "emotions,iespell,flash,advhr,separator,print",theme_advanced_toolbar_location : "top",theme_advanced_toolbar_align : "left",plugin_insertdate_dateFormat : "%m/%d/%Y",plugin_insertdate_timeFormat : "%I:%M %p"});
</script>
```
with this:
```
<script type="text/javascript" src="js/ckeditor/ckeditor.js"></script>
```
Replace this:
```
<label for="message"><#ERROR><b><span class="req">*</span>Message</b><textarea id="message" name="message" rows="15" cols="30" style="width: 80%" class="f-name"><#PARAM name='Message'></textarea>
</label>
```
with this:
```
<label for="message"><#ERROR><strong><span class="req">*</span>Message</strong><textarea id="message" name="message" rows="15" cols="30" style="width: 80%" class="f-name"><#PARAM name='Message'></textarea> <script> CKEDITOR.replace( 'message', { toolbar: [ { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript' ] }, { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote' ] }//, ] }); </script>
</label>
```
- UCourseMessageBoardNewThread.html
Replace this:
```
<script language="javascript" src="js/tiny_mce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript">
tinyMCE.init({mode : "textareas",theme : "simple",plugins : "table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,zoom,flash,searchreplace,print,contextmenu",theme_advanced_buttons1_add : "fontselect,fontsizeselect",theme_advanced_buttons2_add : "separator,insertdate,inserttime,preview,zoom,separator,forecolor,backcolor",theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator",theme_advanced_buttons3_add_before : "tablecontrols,separator",theme_advanced_buttons3_add : "emotions,iespell,flash,advhr,separator,print",theme_advanced_toolbar_location : "top",theme_advanced_toolbar_align : "left",plugin_insertdate_dateFormat : "%m/%d/%Y",plugin_insertdate_timeFormat : "%I:%M %p"});
</script>
```
with this:
```
<script type="text/javascript" src="js/ckeditor/ckeditor.js"></script>
```
Replace this:
```
<label for="message"><#ERROR><b><span class="req">*</span>Message</b><textarea id="message" name="message" rows="15" cols="30" style="width: 80%" class="f-name"><#PARAM name='Message'></textarea>
</label>
```
with this:
```
<label for="message"><#ERROR><strong><span class="req">*</span>Message</strong><textarea id="message" name="message" rows="15" cols="30" style="width: 80%" class="f-name"><#PARAM name='Message'></textarea> <script> CKEDITOR.replace( 'message', { toolbar: [ { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript' ] }, { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote' ] }//, ] }); </script>
</label>
```
- ICourseMessageBoardNewReply.html
Replace this:
```
<script language="javascript" src="js/tiny_mce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript">
tinyMCE.init({mode : "textareas",theme : "simple",plugins : "table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,zoom,flash,searchreplace,print,contextmenu",theme_advanced_buttons1_add : "fontselect,fontsizeselect",theme_advanced_buttons2_add : "separator,insertdate,inserttime,preview,zoom,separator,forecolor,backcolor",theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator",theme_advanced_buttons3_add_before : "tablecontrols,separator",theme_advanced_buttons3_add : "emotions,iespell,flash,advhr,separator,print",theme_advanced_toolbar_location : "top",theme_advanced_toolbar_align : "left",plugin_insertdate_dateFormat : "%m/%d/%Y",plugin_insertdate_timeFormat : "%I:%M %p"});
</script>
```
with this:
```
<script type="text/javascript" src="js/ckeditor/ckeditor.js"></script>
```
Replace this:
```
<label for="message"><#ERROR><b><span class="req">*</span>Message</b><textarea id="message" name="message" rows="15" cols="30" style="width: 80%" class="f-name"><#PARAM name='Message'></textarea>
</label>
```
with this:
```
<label for="message"><#ERROR><strong><span class="req">*</span>Message</strong><textarea id="message" name="message" rows="15" cols="30" style="width: 80%" class="f-name"><#PARAM name='Message'></textarea> <script> CKEDITOR.replace( 'message', { toolbar: [ { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript' ] }, { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote' ] }//, ] }); </script>
</label>
```
- ICourseMessageBoardNewThread.html
Replace this:
```
<script language="javascript" src="js/tiny_mce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript">
tinyMCE.init({mode : "textareas",theme : "simple",plugins : "table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,zoom,flash,searchreplace,print,contextmenu",theme_advanced_buttons1_add : "fontselect,fontsizeselect",theme_advanced_buttons2_add : "separator,insertdate,inserttime,preview,zoom,separator,forecolor,backcolor",theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator",theme_advanced_buttons3_add_before : "tablecontrols,separator",theme_advanced_buttons3_add : "emotions,iespell,flash,advhr,separator,print",theme_advanced_toolbar_location : "top",theme_advanced_toolbar_align : "left",plugin_insertdate_dateFormat : "%m/%d/%Y",plugin_insertdate_timeFormat : "%I:%M %p"});
</script>
```
with this:
```
<script type="text/javascript" src="js/ckeditor/ckeditor.js"></script>
```
Replace this:
```
<label for="message"><#ERROR><b><span class="req">*</span>Message</b><textarea id="message" name="message" rows="15" cols="30" style="width: 80%" class="f-name"><#PARAM name='Message'></textarea>
</label>
```
with this:
```
<label for="message"><#ERROR><strong><span class="req">*</span>Message</strong><textarea id="message" name="message" rows="15" cols="30" style="width: 80%" class="f-name"><#PARAM name='Message'></textarea> <script> CKEDITOR.replace( 'message', { toolbar: [ { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript' ] }, { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote' ] }//, ] }); </script>
</label>
```
Copyright Statement
The copyright statement in the footer of the default web pages was updated to reference the #COPYRIGHT tag in some instances. Changes were made on the following pages:
- AboutAres.html
Replace this:
```
Ares is © Copyright 2004 - 2008. <a href="http://www.atlas-sys.com/">
http://www.atlas-sys.com/</a>. All Rights Reserved.<br>
```
with this:
```
<#COPYRIGHT><br>
```
- GSearchResults.html
Replace this:
```
<p>© Copyright 2004 - 2006 <a href="http://www.atlas-sys.com/">Atlas Systems, Inc.
</a> All Rights Reserved.</p>
<p><a href="#">University Library Home</a> | <a href="#">University Home</a></p>
```
with this:
```
<p><#COPYRIGHT></p>
```
- NewPassword.html
Add this:
```
<p><#COPYRIGHT></p>
```
after this:
```
<#INCLUDE filename="include_footer.html">
```
- ForgotPassword.html
Add this:
```
<p><#COPYRIGHT></p>
```
after this:
```
<#INCLUDE filename="include_footer.html">
```
- GLogon.html
Replace this:
```
<p>© Copyright 2004 - 2008 <a href="http://www.atlas-sys.com/">Atlas Systems, Inc.
</a> All Rights Reserved.</p>
```
with this:
```
<p>Copyright © 2015 <a href="http://www.atlas-sys.com/">Atlas Systems, Inc.
</a> All Rights Reserved.</p>
```
Course Code
Any references in the table to "Section Number" have been changed to "Course Code." These were changed in the CourseValidation, Course, and CourseImport tables. Changes were made on the following pages:
- IActiveCourseList.html
Replace this:
```
<#TABLE>
```
with this:
```
<#TABLE>
```
- IPreviousCourseList.html
Replace this:
```
<#TABLE>
```
with this:
```
<#TABLE>
```
- ICourseClone.html
Replace this:
```
<label for="CourseCode"><#ERROR><b>Section Number/Course Number</b><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#COURSE>"><br />
</label>
```
with this:
```
<label for="CourseCode"><#ERROR><strong> <span class="<#VALIDATION>">Course Code</span></strong><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>" /><br />
</label>
```
- ICourseCreate.html
Replace this:
```
<label for="CourseCode"><#ERROR><b><span class="<#VALIDATION>">Section Number/Course Number</span></b><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>"><br />
</label>
```
with this:
```
<label for="CourseCode"><#ERROR><strong> <span class="<#VALIDATION>">Course Code</span></strong><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>"><br />
</label>
```
- ICourseEdit.html
Replace this:
```
<label for="CourseCode"><#ERROR><b><span class="<#VALIDATION>">Section Number/Course Number</span></b><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#COURSE>"><br />
</label>
```
from this:
```
<label for="CourseCode"><#ERROR><strong> <span class="<#VALIDATION>">Course Code</span></strong><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>"><br />
</label>
```
- ICourseCrossList.html
Replace this:
```
<label for="CourseCode"><#ERROR><b>Cross Listed Section Number/Course Number</b><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>"><br />
</label>
```
with this:
```
<label for="CourseCode"><#ERROR><strong> <span class="<#VALIDATION>">Cross Listed Course Code</span></strong><input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>" /><br />
</label>
```
- IRFMenu.html
Replace this:
```
<#TABLE>
```
with this:
```
<#TABLE>
```
- ISLRFMenu.html
Replace this:
```
<#TABLE>
```
with this:
```
<#TABLE>
```
- ISharedListInfo.html
Replace this:
```
<#TABLE>
```
with this:
```
<#TABLE>
```
- UCourseResults.html
Replace this:
```
<#TABLE> Add Course" previouslyAddedText="Previously Added" id="SearchResults" class="student-table-nohover" AllowRowClick="No" headerText="Courses" AllowJavascriptHover="No" Session="Current" Role="Student" column="CourseNumber:Course" column="CourseCode:Section Number" column="Name:Name" column="Instructor:Instructor" column="ItemCount:Reserve Items" NoDataAction="ShowMessage" NoDataMessage="No courses were found with that criteria.<br/>
```
with this:
```
<#TABLE> Add Course" previouslyAddedText="Previously Added" id="SearchResults" headerText="Courses" Session="Current" Role="Student" column="CourseNumber:Course" column="CourseCode:Course Code" column="Name:Name" column="Instructor:Instructor" column="ItemCount:Reserve Items" NoDataAction="ShowMessage" NoDataMessage="No courses were found with that criteria.<br/>To add courses to your account, <a href='<#Action>'>Search Courses</a>" footerText="<a href='<#Action>'>Search Again?</a>">
```
- UHome.html
Replace this:
```
<#TABLE>To add courses to your account, <a href='<#Action>'>Search Courses</a>">
```
of this:
```
<#TABLE>To add courses to your account, <a href='<#Action>'>Search Courses</a>">
```
- IHome.html
Replace this:
```
<#TABLE>'>Also view upcoming courses</a>" NoDataAction="ShowMessage" NoDataMessage="No courses found.">
```
with this:
```
<#TABLE>'>Also view upcoming courses</a>" NoDataAction="ShowMessage" NoDataMessage="No courses found.">
```
Text Input Type
Some fields (mostly the Title and CitedIn fields) were changed from using a "textarea" tag to using an "input type=text." Changes were made on the following pages:
- IRFAudio.html
Replace this:
```
<label for="Title"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Title</span><br /><span class="note">Please do not abbreviate unless your citation is abbreviated</span></b><textarea id="Title" name="Title" rows="2" cols="40" class="f-name"><#PARAM name='Name="title"/'></textarea><br />
</label>
```
with this:
```
<label for="Title"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Title</span><br /> <span class="note">Please do not abbreviate unless your citation is abbreviated</span></strong><input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='Name="title"/'>"/><br />
</label>
```
Replace this:
```
<label for="CitedIn"><#ERROR><b><span class="<#VALIDATION>">Where did you find this item cited?</span><br /><span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></b><textarea id="CitedIn" name="CitedIn" rows="2" cols="40" class="f-name"><#PARAM name='Name="citedin"/'></textarea><br />
</label>
```
with this:
```
<label for="CitedIn"><#ERROR><strong> <span class="<#VALIDATION>">Where did you find this item cited?</span><br /> <span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></strong><input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='Name="citedin"/'>"/><br />
</label>
```
- IRFBook.html
Replace this:
```
<label for="Title"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Title</span><br /><span class="note">Please do not abbreviate unless your citation is abbreviated</span></b><textarea id="Title" name="Title" rows="2" cols="40" class="f-name"><#PARAM name='Name="title"/'></textarea><br />
</label>
```
with this:
```
<label for="Title"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Title</span><br /> <span class="note">Please do not abbreviate unless your citation is abbreviated</span></strong><input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='Name="title"/'>"/><br />
</label>
```
Replace this:
```
<label for="CitedIn"><#ERROR><b><span class="<#VALIDATION>">Where did you find this item cited?</span><br/><span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></b><textarea id="CitedIn" name="CitedIn" rows="2" cols="40" class="f-name"><#PARAM name='Name="citedin"/'></textarea><br />
</label>
```
with this:
```
<label for="CitedIn"><#ERROR><strong> <span class="<#VALIDATION>">Where did you find this item cited?</span><br /> <span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></strong><input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='Name="citedin"/'>"/><br />
</label>
```
- IRFEditAudio.html
Replace this:
```
<label for="Title"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Title</span><br /><span class="note">Please do not abbreviate unless your citation is abbreviated</span></b><textarea id="Title" name="Title" rows="2" cols="40" class="f-name"><#item></textarea><br />
</label>
```
with this:
```
<label for="Title"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Title</span><br /> <span class="note">Please do not abbreviate unless your citation is abbreviated</span></strong><input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='name="Title"/'>"/><br />
</label>
```
Replace this:
```
<label for="CitedIn"><#ERROR><b><span class="<#VALIDATION>">Where did you find this item cited?</span><br /><span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></b><textarea id="CitedIn" name="CitedIn" rows="2" cols="40" class="f-name"><#item></textarea><br />
</label>
```
with this:
```
<label for="CitedIn"><#ERROR><strong> <span class="<#VALIDATION>">Where did you find this item cited?</span><br /> <span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></strong><input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='name="CitedIn"/'>"/><br />
</label>
```
- IRFEditBook.html
Replace this:
```
<label for="Title"><b><span class="req">*</span><span class="<#VALIDATION>">Title</span><br /><span class="note">Please do not abbreviate unless your citation is abbreviated</span></b><textarea id="Title" name="Title" rows="2" cols="40" class="f-name"><#ITEM></textarea><br />
</label>
```
with this:
```
<label for="Title"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Title</span><br /> <span class="note">Please do not abbreviate unless your citation is abbreviated</span></strong><input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='name="Title"/'>"/><br />
</label>
```
Replace this:
```
<label for="CitedIn"><b>Where did you find this item cited?<br /><span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></b><textarea id="CitedIn" name="CitedIn" rows="2" cols="40" class="f-name"><#ITEM></textarea><br />
</label>
```
with this:
```
<label for="CitedIn"><#ERROR><strong> <span class="<#VALIDATION>">Where did you find this item cited?</span><br /> <span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></strong><input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='name="CitedIn"/'>"/><br />
</label>
```
- IRFEditBookChapter.html
Replace this:
```
<label for="ArticleTitle"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Chapter Title</span></b><input id="ArticleTitle" name="ArticleTitle" type="text" size="40" class="f-name" value="<#ITEM>"><br />
</label>
```
with this:
```
<label for="Title"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Book Title</span><br/> <span class="note">Please do not abbreviate unless your citation is abbreviated</span></strong><input id="Title" name="Title" type="text" size="40" class="f-name" value="<#PARAM name='Title'>"><br />
</label>
```
Replace this:
```
<label for="CitedIn"><#ERROR><b><span class="<#VALIDATION>">Where did you find this citation?</span></b><input id="CitedIn" name="CitedIn" type="text" size="40" class="f-name" value="<#ITEM>"><br />
</label>
```
with this:
```
<label for="CitedIn"><#ERROR><strong> <span class="<#VALIDATION>">Where did you find this item cited?</span><br /> <span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></strong><input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='name="CitedIn"/'>"/><br />
</label>
```
- IRFEditVideo.html
Replace this:
```
<label for="Title"><#ERROR><b><span class="req">*</span>Title<br /><span class="note">Please do not abbreviate unless your citation is abbreviated</span></b><textarea id="Title" name="Title" rows="2" cols="40" class="f-name"><#ITEM></textarea><br />
</label>
```
with this:
```
<label for="Title"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Title</span><br /> <span class="note">Please do not abbreviate unless your citation is abbreviated</span></strong><input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='name="Title"/'>"/><br />
</label>
```
Replace this:
```
<label for="CitedIn"><#ERROR><b>Where did you find this item cited?<br /><span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></b><textarea id="CitedIn" name="CitedIn" rows="2" cols="40" class="f-name"><#ITEM></textarea><br />
</label>
```
with this:
```
<label for="CitedIn"><#ERROR><strong> <span class="<#VALIDATION>">Where did you find this item cited?</span><br /> <span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></strong><input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='name="CitedIn"/'>"/><br />
</label>
```
- IRFOpenURLBook.html
Replace this:
```
<label for="Title"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Title</span><br /><span class="note">Please do not abbreviate unless your citation is abbreviated</span></b><textarea id="Title" name="Title" rows="2" cols="40" class="f-name"><#PARAM name='name="Title"/'></textarea><br />
</label>
```
with this:
```
<label for="Title"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Title</span><br /> <span class="note">Please do not abbreviate unless your citation is abbreviated</span></strong><input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='name="Title"/'>"/><br />
</label>
```
Replace this:
```
<label for="CitedIn"><#ERROR><b>Where did you find this item cited?<br /><span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></b><textarea id="CitedIn" name="CitedIn" rows="2" cols="40" class="f-name"><#PARAM name='name="CitedIn"/'></textarea><br />
</label>
```
with this:
```
<label for="CitedIn"><#ERROR><strong> <span class="<#VALIDATION>">Where did you find this item cited?</span><br /> <span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></strong><input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='Name="citedin"/'>"/><br />
</label>
```
- IRFVideo.html
Replace this:
```
<label for="Title"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Title</span><br /><span class="note">Please do not abbreviate unless your citation is abbreviated</span></b><textarea id="Title" name="Title" rows="2" cols="40" class="f-name"><#PARAM name='Name="title"/'></textarea><br />
</label>
```
with this:
```
<label for="Title"><#ERROR><strong> <span class="req">*</span><span class="<#VALIDATION>">Title</span><br /> <span class="note">Please do not abbreviate unless your citation is abbreviated</span></strong><input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='name="title"/'>"/><br />
</label>
```
Replace this:
```
<label for="CitedIn"><#ERROR><b>Where did you find this item cited?<br /><span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></b><textarea id="CitedIn" name="CitedIn" rows="2" cols="40" class="f-name"><#PARAM name='Name="citedin"/'></textarea><br />
</label>
```
with this:
```
<label for="CitedIn"><#ERROR><strong> <span class="<#VALIDATION>">Where did you find this item cited?</span><br /> <span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></strong><input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='Name="citedin"/'>"/><br />
</label>
```
- ISLRFAudio.html
Replace this:
```
<label for="Title"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Title</span><br /><span class="note">Please do not abbreviate unless your citation is abbreviated</span></b><textarea id="Title" name="Title" rows="2" cols="40" class="f-name"><#PARAM name='Name="title"/'></textarea><br />
</label>
```
with this:
```
<label for="Title"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Title</span><br /> <span class="note">Please do not abbreviate unless your citation is abbreviated</span></strong><input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='name="Title"/'>"/><br />
</label>
```
Replace this:
```
<label for="CitedIn"><#ERROR><b><span class="<#VALIDATION>">Where did you find this item cited?</span><br /><span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></b><textarea id="CitedIn" name="CitedIn" rows="2" cols="40" class="f-name"><#PARAM name='Name="citedin"/'></textarea><br />
</label>
```
with this:
```
<label for="CitedIn"><#ERROR><strong> <span class="<#VALIDATION>">Where did you find this item cited?</span><br /> <span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></strong><input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='Name="citedin"/'>"/><br />
</label>
```
- ISLRFBook.html
Replace this:
```
<label for="Title"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Title</span><br /><span class="note">Please do not abbreviate unless your citation is abbreviated</span></b><textarea id="Title" name="Title" rows="2" cols="40" class="f-name"><#PARAM name='Name="title"/'></textarea><br />
</label>
```
with this:
```
<label for="Title"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Title</span><br /> <span class="note">Please do not abbreviate unless your citation is abbreviated</span></strong><input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='name="Title"/'>"/><br />
</label>
```
Replace this:
```
<label for="CitedIn"><#ERROR><b><span class="<#VALIDATION>">Where did you find this item cited?</span><br/><span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></b><textarea id="CitedIn" name="CitedIn" rows="2" cols="40" class="f-name"><#PARAM name='Name="citedin"/'></textarea><br />
</label>
```
with this:
```
<label for="CitedIn"><#ERROR><strong> <span class="<#VALIDATION>">Where did you find this item cited?</span><br/> <span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></strong><input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='Name="citedin"/'>"/><br />
</label>
```
- ISLRFEditAudio.html
Replace this:
```
<label for="Title"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Title</span><br /><span class="note">Please do not abbreviate unless your citation is abbreviated</span></b><textarea id="Title" name="Title" rows="2" cols="40" class="f-name"><#SHAREDLISTITEM></textarea><br />
</label>
```
with this:
```
<label for="Title"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Title</span><br /> <span class="note">Please do not abbreviate unless your citation is abbreviated</span></strong><input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='name="Title"/'>"/><br />
</label>
```
Replace this:
```
<label for="CitedIn"><#ERROR><b><span class="<#VALIDATION>">Where did you find this item cited?</span><br /><span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></b><textarea id="CitedIn" name="CitedIn" rows="2" cols="40" class="f-name"><#SHAREDLISTITEM></textarea><br />
</label>
```
with this:
```
<label for="CitedIn"><#ERROR><strong> <span class="<#VALIDATION>">Where did you find this item cited?</span><br /> <span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></strong><input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='name="CitedIn"/'>"/><br />
</label>
```
- ISLRFEditBook.html
Replace this:
```
<label for="Title"><b><span class="req">*</span><span class="<#VALIDATION>">Title</span><br /><span class="note">Please do not abbreviate unless your citation is abbreviated</span></b><textarea id="Title" name="Title" rows="2" cols="40" class="f-name"><#SHAREDLISTITEM></textarea><br />
</label>
```
with this:
```
<label for="Title"><#ERROR><strong> <span class="req">*</span><span class="<#VALIDATION>">Title</span><br /> <span class="note">Please do not abbreviate unless your citation is abbreviated</span></strong><input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='name="Title"/'>"/><br />
</label>
```
Replace this:
```
<label for="CitedIn"><b>Where did you find this item cited?<br /><span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></b><textarea id="CitedIn" name="CitedIn" rows="2" cols="40" class="f-name"><#SHAREDLISTITEM></textarea><br />
</label>
```
with this:
```
<label for="CitedIn"><#ERROR><strong> <span class="<#VALIDATION>">Where did you find this item cited?</span><br /> <span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></strong><input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='CitedIn'>" /><br />
</label>
```
- ISLRFEditVideo.html
Replace this:
```
<label for="Title"><#ERROR> <b><span class="req">*</span>Title<br /><span class="note">Please do not abbreviate unless your citation is abbreviated</span></b><textarea id="Title" name="Title" rows="2" cols="40" class="f-name"><#SHAREDLISTITEM></textarea><br />
</label>
```
with this:
```
<label for="Title"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Title</span><br /> <span class="note">Please do not abbreviate unless your citation is abbreviated</span></strong><input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='name="Title"/'>"/><br />
</label>
```
Replace this:
```
<label for="CitedIn"><#ERROR><b>Where did you find this item cited?<br /><span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></b><textarea id="CitedIn" name="CitedIn" rows="2" cols="40" class="f-name"><#SHAREDLISTITEM></textarea><br />
</label>
```
with this:
```
<label for="CitedIn"><#ERROR><strong> <span class="<#VALIDATION>">Where did you find this item cited?</span><br /> <span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></strong><input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='name="CitedIn"/'>"/><br />
</label>
```
- ISLRFInstructorUpload.html
Replace this:
```
<label for="Title"><b><span class="req">*</span><span class="<#VALIDATION>">Title</span><br /><span class="note">Please do not abbreviate unless your citation is abbreviated</span></b><input id="Title" name="Title" type="text" size="40" class="f-name"><#ITEM></textarea><br />
</label>
```
with this:
```
<label for="Title"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Title</span><br /> <span class="note">Please do not abbreviate unless your citation is abbreviated</span></strong><input id="Title" name="Title" type="text" size="40" class="f-name" value="<#PARAM name='Title'>"><br />
</label>
```
- ISLRFOpenURLBook.html
Replace this:
```
<label for="Title"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Title</span><br /><span class="note">Please do not abbreviate unless your citation is abbreviated</span></b><textarea id="Title" name="Title" rows="2" cols="40" class="f-name"><#PARAM name='name="Title"/'></textarea><br />
</label>
```
with this:
```
<label for="Title"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Title</span><br /> <span class="note">Please do not abbreviate unless your citation is abbreviated</span></strong><input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='name="Title"/'>"/><br />
</label>
```
Replace this:
```
<label for="CitedIn"><#ERROR><b>Where did you find this item cited?<br /><span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></b><textarea id="CitedIn" name="CitedIn" rows="2" cols="40" class="f-name"><#PARAM name='name="CitedIn"/'></textarea><br />
</label>
```
with this:
```
<label for="CitedIn"><#ERROR><strong> <span class="<#VALIDATION>">Where did you find this item cited?</span><br /> <span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></strong><input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='Name="citedin"/'>"/><br />
</label>
```
- ISLRFVideo.html
Replace this:
```
<label for="Title"><#ERROR><b><span class="req">*</span><span class="<#VALIDATION>">Title</span><br /><span class="note">Please do not abbreviate unless your citation is abbreviated</span></b><textarea id="Title" name="Title" rows="2" cols="40" class="f-name"><#PARAM name='Name="title"/'></textarea><br />
</label>
```
with this:
```
<label for="Title"><#ERROR><strong> <span class="req">*</span> <span class="<#VALIDATION>">Title</span><br /> <span class="note">Please do not abbreviate unless your citation is abbreviated</span></strong><input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='name="Title"/'>"/><br />
</label>
```
Replace this:
```
<label for="CitedIn"><#ERROR><b>Where did you find this item cited?<br /><span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></b><textarea id="CitedIn" name="CitedIn" rows="2" cols="40" class="f-name"><#PARAM name='Name="citedin"/'></textarea><br />
</label>
```
with this:
```
<label for="CitedIn"><#ERROR><strong> <span class="<#VALIDATION>">Where did you find this item cited?</span><br /> <span class="note">Examples are Dissertation Abstracts, Dialog (specify which database), or a specific journal or book.</span></strong><input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='Name="citedin"/'>"/><br />
</label>
```
- ICourseClone.html
Replace this:
```
<label for="CourseDescription"><#ERROR><b>Course Description</b><textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5"><#COURSE></textarea><br />
</label>
```
with this:
```
<label for="CourseDescription"><#ERROR><strong> <span class="<#VALIDATION>">Course Description</span></strong><input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name='name="CourseDescription"/'>"/><br />
</label>
```
- ICourseCreate.html
Replace this:
```
<label for="CourseDescription"><#ERROR><b><span class="<#VALIDATION>">Course Description</span></b><textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5"><#PARAM name='name="CourseDescription"/'></textarea><br />
</label>
```
with this:
```
<label for="CourseDescription"><#ERROR><strong> <span class="<#VALIDATION>">Course Description</span></strong><input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name='name="CourseDescription"/'>"/><br />
</label>
```
Skip to Main Content
A "Skip to Main Content" link was added to the top of the web pages. Changes were made on the following pages:
- main.css
Add this:
```
/* LAYOUT - HEADER */
#skip-to-content {text-align: center}
```
- include_header.html
Replace this:
```
<div id="header">
<div id="title-name"><a href="http://www.atlas-sys.com/"><img src="images/logo.gif" alt="Ares" title="Ares"/></a></div>
<div id="search">
```
with this:
```
<div id="skip-to-content"><a href="#content" accesskey="S" onclick="$('#content').focus(); return false;">Skip to Main Content</a></div>
<div id="header">
<div id="title-name" role="banner"><a href="http://www.atlas-sys.com/"><img src="images/logo.gif" alt="Ares" title="Ares"/></a></div>
<div id="search" role="search">
```
- GLogon.html
Replace this:
```
<div id="header">
<div id="title-name"><img src="images/logo.gif" alt="Ares" title="Ares"/></div>
```
with this:
```
<div id="skip-to-content"><a href="#content" accesskey="S" onclick="$('#content').focus(); return false;">Skip to Main Content</a></div>
<div id="header">
<div id="title-name"><img src="images/logo.gif" alt="Ares" title="Ares"/></div>
```
Aria Role
Different page sections have been annotated with the appropriate aria role. Changes have been made on the following pages:
- include_viewdelete.html
Replace this:
```
<span class="note2"><#ITEM><#ITEM>
</span>
```
with this:
```
<span class="note2"><#ITEM>|</span> "><#ITEM>
</span>
```
- include_vieweditdelete.html
Replace this:
```
<#ITEM>
<#ITEM>
<#ITEM>
<#ITEM>
```
with this:
```
<#ITEM>|</span> ">
<#ITEM>|</span> ">
<#ITEM>|</span> ">
<#ITEM>
```
- IItemDelete.html
Replace this:
```
<div class="row"><#ITEM> View this item"></div>
```
with this:
```
<div class="row"><#ITEM> View this item"></div>
```
- UCourseInfo.html
Replace this:
```
<select id="SortCourseItems" name="SortCourseItems" onchange="ResortItems('<#PARAM name='name="SessionID"/'>', <#PARAM name='name="Value"/'>, this[this.selectedIndex].value);"><option value="">Sort By</option>
```
with this:
```
<select id="SortCourseItems" name="SortCourseItems" aria-label="Choose field to order by. Selecting a value will reload the page and sort the course items by that field." onblur="ResortItems('<#PARAM name='name="SessionID"/'>', <#PARAM name='name="Value"/'>, this[this.selectedIndex].value);"><option value="" selected="selected" disabled="disabled" >Sort By</option>
```
- UItemInfo.html
Replace this:
```
<div class="row"><#ITEM> View this item"></div>
<div class="row"><#ITEM></div>
```
with this:
```
<div class="row"><#ITEM> View this item"></div><div class="row"><#ITEM></div>
```
- ICourseImportItems.html
Replace this:
```
<a href="#" onclick="ToggleCheckboxes(false, 'ImportItems'); return false;">Uncheck All</a> | <a href="#" onclick="ToggleCheckboxes(true, 'ImportItems'); return false;">Check All</a><span class="<#CONDITIONAL>"> | <a href="#" onclick="ToggleCheckboxes(false, 'ImportItems', 'sharedlistitem'); return false;">Uncheck All Created From Shared List</a></span><br />
```
with this:
```
<a href="#" aria-label="Uncheck all of the rows in the table below." onclick="ToggleCheckboxes(false, 'ImportItems'); return false;">Uncheck All</a> <span aria-hidden="true">|</span> <a href="#" aria-label="Check all of the rows in the table below." onclick="ToggleCheckboxes(true, 'ImportItems'); return false;">Check All</a><span class="<#CONDITIONAL>"> span aria-hidden="true">|</span> <a href="#" aria-label="Uncheck all of the rows in the table below that were created from a shared list item." onclick="ToggleCheckboxes(false, 'ImportItems', 'sharedlistitem'); return false;">Uncheck All Created From Shared List</a></span><br />
```
- ICourseImportItemsToSharedList.html
Replace this:
```
<a href="#" onclick="ToggleCheckboxes(false, 'ImportItems'); return false;">Uncheck All</a> | <a href="#" onclick="ToggleCheckboxes(true, 'ImportItems'); return false;">Check All</a><span class="<#CONDITIONAL>"> | <a href="#" onclick="ToggleCheckboxes(false, 'ImportItems', 'sharedlistitem'); return false;">Uncheck All Created From Shared List</a></span><br />
```
with this:
```
<a href="#" aria-label="Uncheck all of the rows in the table below." onclick="ToggleCheckboxes(false, 'ImportItems'); return false;">Uncheck All</a> <span aria-hidden="true">|</span> <a href="#" aria-label="Check all of the rows in the table below." onclick="ToggleCheckboxes(true, 'ImportItems'); return false;">Check All</a><span class="<#CONDITIONAL>"> <span aria-hidden="true">|</span> <a href="#" aria-label="Uncheck all of the rows in the table below that were created from a shared list item." onclick="ToggleCheckboxes(false, 'ImportItems', 'sharedlistitem'); return false;">Uncheck All Created From Shared List</a></span><br />
```
- ICourseMessageBoardThread.html
Replace this:
```
<a href="<#ACTION action="10" form="20">">New Topic</a> | <a href="<#ACTION action="10" form="20">">Post Reply</a>
```
with this:
```
<a href="<#ACTION action="10" form="20">">New Topic</a> <span aria-hidden="true">|</span> <a href="<#ACTION action="10" form="20">">Post Reply</a>
```
- ICourseProxyUsers.html
Replace this:
```
<p><input name="ProxyUser" type="text"/> <input id="AddProxy" type="submit" name="AddProxyUser" Value="Add Proxy User"/></p>
```
with this:
```
<p><input aria-label="Course Proxy's Username" name="ProxyUser" type="text"/> <input id="AddProxy" type="submit" name="AddProxyUser" Value="Add Proxy User"/></p>
```
- ICourseInfo.html
Replace this:
```
<select id="SortCourseItems" name="SortCourseItems" onchange="ResortItems('<#PARAM name='SessionID'>', '<#PARAM name='Value'>', this[selectedIndex].value);"/><option value="">Sort By</option>
```
with this:
```
<select id="SortCourseItems" name="SortCourseItems" aria-label="Choose field to order by. Selecting a value will reload the page and sort the course items by that field." onblur="ResortItems('<#PARAM name='SessionID'>', '<#PARAM name='Value'>', this[selectedIndex].value);"/><option value="" selected="selected" disabled="disabled">Sort By</option>
```
- ICourseClone.html
Replace this:
```
<a href="#" onclick="ToggleCheckboxes(false, 'CloneItems'); return false;">Uncheck All</a> | <a href="#" onclick="ToggleCheckboxes(true, 'CloneItems'); return false;">Check All</a><span class="<#CONDITIONAL>"> | <a href="#" onclick="ToggleCheckboxes(false, 'CloneItems', 'sharedlistitem'); return false;">Uncheck All Created From Shared List</a></span><br/>
```
with this:
```
<a href="#" aria-label="Uncheck all of the rows in the table below." onclick="ToggleCheckboxes(false, 'CloneItems'); return false;">Uncheck All</a> <span aria-hidden="true">|</span> <a href="#" aria-label="Check all of the rows in the table below." onclick="ToggleCheckboxes(true, 'CloneItems'); return false;">Check All</a><span class="<#CONDITIONAL>"> <span aria-hidden="true">|</span> <a href="#" aria-label="Uncheck all of the rows in the table below that were created from a shared list item." onclick="ToggleCheckboxes(false, 'CloneItems', 'sharedlistitem'); return false;">Uncheck All Created From Shared List</a></span><br/>
```
Add this:
```
<div><a href="#" aria-label="Uncheck all of the rows in the table below." onclick="ToggleCheckboxes(false, 'CloneInstructors'); return false;">Uncheck All</a> <span aria-hidden="true">|</span> <a href="#" aria-label="Check all of the rows in the table below." onclick="ToggleCheckboxes(true, 'CloneInstructors'); return false;">Check All</a><br/>
</div>
<#TABLE>
```
after this:
```
<#TABLE>"/>
```
- IUploadForm.html
Replace this:
```
<div class="row"><#ITEM> View this item"></div>
```
with this:
```
<div class="row"><#ITEM> View this item"></div>
```
- IUploadSharedListItemForm.html
Replace this:
```
<div class="row"><#SHAREDLISTITEM> View this item"></div>
```
with this:
```
<div class="row"><#SHAREDLISTITEM> View this item"></div>
```
- IProxyUsers.html
Replace this:
```
<span style="background-color:#E6F4FF ;font-size: 110%"><#STATUS></span>
<p><input name="ProxyUser" type="text"/> <input id="AddProxyUser" type="submit" name="AddProxyUser" Value="Add Proxy User"/></p>
<p><#TABLE></p>
```
with this:
```
<span style="background-color:#E6F4FF ;font-size: 110%" tabindex="0"><#STATUS></span>
<p><input name="ProxyUser" type="text" aria-label="Full Proxy's Username"/> <input id="AddProxyUser" type="submit" name="AddProxyUser" Value="Add Proxy User"/></p>
<#TABLE>
```
- include_permanentlink.html
Replace this:
```
<img id="d_clip_button" data-clipboard-target="clipboard_target" title="Click to copy" src="images/paste_16x16.gif" />
<span id="clipboard_target"><#ITEM></span>
```
with this:
```
<img id="d_clip_button" data-clipboard-target="clipboard_target" aria-hidden="true" title="Click to copy" src="images/paste_16x16.gif" />
<span id="clipboard_target"><a href="<#ITEM>"><#ITEM></a></span>
```
Aural Notifications
Aural notifications have been added when javascript makes dynamic changes to a page's content. When something passes a message to ariaAlert, it will create an offscreen div with the appropriate attributes such that screen readers will announce changes to its content, and then set its content to the provided message. This is used when the semester date ranges are updated during course cloning, when loan periods are updated because the pickup location was changed, and when the new batch tag form is shown or hidden. Changes have been made on the following pages:
- aresajax.js
Add this to the top:
```
function ariaAlert(message) {
ariaAlertDiv = $("#aria-alert-div");
if (ariaAlertDiv.length == 0) {
ariaAlertDiv = $("<div></div>");
ariaAlertDiv.attr("id", "aria-alert-div");
ariaAlertDiv.attr("aria-live", "polite");
ariaAlertDiv.addClass("offscreen");
$(document.documentElement).append(ariaAlertDiv);
}
ariaAlertDiv.text(message);
}
```
Add this:
```
ariaAlert("Semester date ranges updated in table.");
```
after this:
```
.done(function (data) {
var code = $(data).find("araj_code");
var startDate = $(data).find("start");
var endDate = $(data).find("end");
if (typeof code !== "undefined") {
if (code.text() === "1") {
$("input[type=text][name^='ADate'").val(startDate.text());
$("input[type=text][name^='IDate'").val(endDate.text());
```
Add this:
```
ariaAlert('The loan periods have been updated for the selected pickup location.')
```
after this:
```
.done(function (data) {
var code = $(data).find("araj_code");
if (typeof code !== "undefined") {
if (code.text() === "0") {
var new_loanperiods = $(data).find("lp_options");
if (typeof new_loanperiods !== "undefined") {
$("#LoanPeriodDiv").html('<label for="LoanPeriod"><strong>Loan Period for Physical Items</strong><select name="LoanPeriod" id="LoanPeriod">' + new_loanperiods.text() + '</select><br /></label>');
```
- aresBatchEditing.js
Add this:
```
if (ariaAlert) {ariaAlert('A batch edit form has been added to the page below this button. Use this form to specify the tags you wish to apply to multiple items. The course item table below now has a column to indicate if that course item should be included in the item batch.');
```
after this:
```
function ToggleBatchTag(enabled, tableId, menuId) {
$('#' + menuId).toggle();
if (enabled) {
if ($('#' + tableId + ' tbody tr[data-itemid]').length > 0) {
//Enable batch tagging indicator on table
$('#' + tableId).attr('data-batch-tagging-active', 1);
//Show the batch tag columns
$('#' + tableId + ' th.batchTag, #' + tableId + ' td.batchTag').show();
//Add an empty header to the table title footer row
$('#' + tableId + ' tfoot tr td').attr('colspan', $('#' + tableId + ' tfoot tr td').attr('colspan') + 1);
```
Add this:
```
ariaAlert('The batch edit form has been removed from the page below this button. The Batch Edit checkbox column has been removed from the course items table below.');
```
after this:
```
else {
//Disable batch tagging indicator on table
$('#' + tableId).attr('data-batch-tagging-active', 0);
//Hide the batch tag columns
$('th.batchTag,td.batchTag').hide();
//Remove one of the columns from the footer colspan
$('#' + tableId + ' tfoot tr td').attr('colspan', $('#' + tableId + ' tfoot tr td').attr('colspan') - 1);
```
New Window
Links will no longer open in a new window or tab. Changes were made on the following pages:
- include_viewdelete.html
Replace this:
```
<span class="note2"><#ITEM><#ITEM>
</span>
```
with this:
```
<span class="note2"><#ITEM>|</span> "><#ITEM>
</span>
```
- Include_sharedlistitemviewdelete.html
Replace this:
```
<#SHAREDLISTITEM>
<#SHAREDLISTITEM>
```
with this:
```
<#SHAREDLISTITEM>
<#SHAREDLISTITEM>
```
- include_sharedlistitemvieweditdelete.html
Replace this:
```
<#SHAREDLISTITEM>
<#SHAREDLISTITEM>
<#SHAREDLISTITEM>
```
with this:
```
<#SHAREDLISTITEM>
<#SHAREDLISTITEM>
<#SHAREDLISTITEM>
```
- include_vieweditdelete.html
Replace this:
```
<#ITEM>
<#ITEM>
<#ITEM>
<#ITEM>
```
with this:
```
<#ITEM>|</span> ">
<#ITEM>|</span> ">
<#ITEM>|</span> ">
<#ITEM>
```
- IItemDelete.html
Replace this:
```
<div class="row"><#ITEM> View this item"></div>
```
with this:
```
<div class="row"><#ITEM> View this item"></div>
```
- UItemInfo.html
Replace this:
```
<div class="row"><#ITEM> View this item"></div><div class="row"><#ITEM></div>
```
with this:
```
<div class="row"><#ITEM> View this item"></div>
<div class="row"><#ITEM></div>
```
- IUploadForm.html
Replace this:
```
<div class="row"><#ITEM> View this item"></div>
```
with this:
```
<div class="row"><#ITEM> View this item"></div>
```
- IUploadSharedListItemForm.html
Replace this:
```
<div class="row"><#SHAREDLISTITEM> View this item"></div>
```
with this:
```
<div class="row"><#SHAREDLISTITEM> View this item"></div>
```
Fading Status Lines
The functionality for fading status lines uses a new js file. The following changes have been made:
- prototype.js - remove this file from your Ares web folder
- fat.js - remove this file from your Ares web folder
- scriptaculous.js - remove this file from your Ares web folder
- fadeEffect.js - add this file to your Ares web folder
- include_head.html
Add this:
```
<script type="text/javascript" src="js/fadeEffect.js"></script>
```
PARAM Tag
The Ares web DLL was updated to load Course, Item, and Shared List Item fields into the appropriate parameters before showing pages where those objects may be edited. As a part of this change, the #PARAM tag is now used in many cases instead of the #ITEM, #COURSE, or #SHAREDLISTITEM tags. An important aspect of this change is that when editing an object and the form fails validation, the changes are no longer lost. Changes were made on the following pages:
- ChangePassword.html
Replace this:
```
<input id="PasswordHint" name="Passwordhint" type="text" size="40" class="f-name" value="<#USER>"><br />
```
with this:
```
<input id="PasswordHint" name="Passwordhint" type="text" size="40" class="f-name" value="<#PARAM name="PasswordHint" />"><br />
```
- GCreateAccount.html
Replace this:
```
<input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name='NAME="Address2"/'>">
```
with this:
```
<input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name='name="Address2"/'>"><br />
```
Replace this:
```
<input id="PasswordHint" name="PasswordHint" type="text" size="40" class="f-name" value="<#PARAM name='Name="PasswordHint"/'>"><br />
```
with this:
```
<input id="PasswordHint" name="Passwordhint" type="text" size="40" class="f-name" value="<#PARAM name="PasswordHint" />"><br />
```
- ICourseClone.html
Replace this:
```
<input type="text" class="f-name" id="CourseName" name="CourseName" value="<#COURSE>" size="40"><br />
```
with this:
```
<input type="text" class="f-name" id="CourseName" name="CourseName" value="<#PARAM name='name=CourseName'>" size="40" /><br />
```
Replace this:
```
<input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#COURSE>"><br />
```
with this:
```
<input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#PARAM name='coursenumber'>" /><br />
```
Replace this:
```
<input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#COURSE>"><br />
```
with this:
```
<input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name='CourseCode'>" /><br />
```
Replace this:
```
<input id="CourseInstructor" name="CourseInstructor" type="text" size="40" class="f-name" value="<#COURSE>"><br />
```
with this:
```
<input id="CourseInstructor" name="CourseInstructor" type="text" size="40" class="f-name" value="<#PARAM name='CourseInstructor'>" /><br />
```
Replace this:
```
<#OPTION>" Size="1"><br/>
```
with this:
```
<#OPTION>" Size="1"><br/>
```
Replace this:
```
<input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#COURSE>"/><br />
```
with this:
```
<input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#PARAM name='CourseURL'>"/><br />
```
Replace this:
```
<textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5"><#COURSE></textarea><br />
```
with this:
```
<input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name='name="CourseDescription"/'>"/><br />
```
Replace this:
```
<input id="CoursePassword" name="CoursePassword" type="text" size="20" class="f-name" value="<#COURSE>"/><br />
```
with this:
```
<input id="CoursePassword" name="CoursePassword" type="text" size="20" class="f-name" value="<#PARAM name='CoursePassword'>"/><br />
```
- ICourseEdit.html
Replace this:
```
<input id="CourseName" name="CourseName" type="text" size="40" class="f-name" value="<#COURSE>"><br />
```
with this:
```
<input id="CourseName" name="CourseName" type="text" size="40" class="f-name" value="<#PARAM name='CourseName'>"><br />
```
Replace this:
```
<input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#COURSE>"><br />
```
with this:
```
<input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#PARAM name='CourseNumber'>"><br />
```
Replace this:
```
<#OPTION>" Size="1"><br/>
```
with this:
```
<#OPTION>" Size="1"><br/>
```
Replace this:
```
<input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#COURSE>"/><br />
```
with this:
```
<input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#PARAM name='CourseURL'>"/><br />
```
Replace this:
```
<input id="CourseEnrollment" name="CourseEnrollment" type="text" size="20" class="f-name" value="<#COURSE>"/><br />
```
with this:
```
<input id="CourseEnrollment" name="CourseEnrollment" type="text" size="20" class="f-name" value="<#PARAM name='CourseEnrollment'>"/><br />
```
Replace this:
```
<textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5">
<#COURSE></textarea><br />
```
with this:
```
<input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name='name="CourseDescription"/'>"/><br />
```
Replace this:
```
<input type="text"" class="f-name" name="CourseInstructor" value="<#COURSE>"/>
```
with this:
```
<input type="text" class="f-name" id="CourseInstructor" name="CourseInstructor" value="<#PARAM name='CourseInstructor'>"/>
```
Replace this:
```
<input type="text"" class="f-name" name="CoursePassword" value="<#COURSE>"/>
```
with this:
```
<input type="text" id="CoursePassword" class="f-name" name="CoursePassword" value="<#PARAM name='CoursePassword'>"/>
```
Replace this:
```
<#OPTION>" headerText="<label for='Pickup Location'><b><span class='<#VALIDATION>'>Default Pickup Location for Physical Items</span></b>" footerText="<br /></label>">
```
with this:
```
<#OPTION>" headerText="<label for='PickupLocation'><strong><span class='<#VALIDATION>'>Default Pickup Location for Physical Items</span></strong>" footerText="<br /></label>">
```
- IRFArticle.html
Replace this:
```
<textarea id="Notes" name="ItemNote" rows="2" cols="40" class="f-name"></textarea>
```
with this:
```
<textarea id="Notes" name="ItemNote" rows="2" cols="40" class="f-name"><#PARAM name='ItemNote'></textarea>
```
- IRFEditArticle.html
Replace this:
```
<input id="Title" name="Title" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Title" name="Title" type="text" size="40" class="f-name" value="<#PARAM name='Title'>"><br />
```
Replace this:
```
<input id="Volume" name="Volume" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Volume" name="Volume" type="text" size="40" class="f-name" value="<#PARAM name='Volume'>"><br />
```
Replace this:
```
<input id="Issue" name="Issue" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Issue" name="Issue" type="text" size="40" class="f-name" value="<#PARAM name='Issue'>"><br />
```
Replace this:
```
<input id="JournalYear" name="JournalYear" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="JournalYear" name="JournalYear" type="text" size="40" class="f-name" value="<#PARAM name='JournalYear'>"><br />
```
Replace this:
```
<input id="JournalMonth" name="JournalMonth" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="JournalMonth" name="JournalMonth" type="text" size="40" class="f-name" value="<#PARAM name='JournalMonth'>"><br />
```
Replace this:
```
<input id="ArticleTitle" name="ArticleTitle" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="ArticleTitle" name="ArticleTitle" type="text" size="40" class="f-name" value="<#PARAM name='ArticleTitle'>"><br />
```
Replace this:
```
<input id="Author" name="Author" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Author" name="Author" type="text" size="40" class="f-name" value="<#PARAM name='Author'>"><br />
```
Replace this:
```
<input id="Pages" name="Pages" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Pages" name="Pages" type="text" size="40" class="f-name" value="<#PARAM name='Pages'>"><br />
```
Replace this:
```
<input id="ISXN" name="ISXN" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="ISXN" name="ISXN" type="text" size="40" class="f-name" value="<#PARAM name='ISXN'>"><br />
```
Replace this:
```
<input id="DOI" name="DOI" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="DOI" name="DOI" type="text" size="40" class="f-name" value="<#PARAM name='DOI'>"><br />
```
Replace this:
```
<input id="ESPNumber" name="ESPNumber" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="ESPNumber" name="ESPNumber" type="text" size="40" class="f-name" value="<#PARAM name='ESPNumber'>"><br />
```
Replace this:
```
<input id="CitedIn" name="CitedIn" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="CitedIn" name="CitedIn" type="text" size="40" class="f-name" value="<#PARAM name='CitedIn'>"><br />
```
Replace this:
```
<input id="URL" name="URL" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="URL" name="URL" type="text" size="40" class="f-name" value="<#PARAM name='URL'>"><br />
```
Replace this:
```
<input type="hidden" name="CopyrightRequired" value="<#ITEM>">
```
with this:
```
<input type="hidden" name="CopyrightRequired" value="<#PARAM name='name="CopyrightRequired"/'>">
```
- IRFEditAudio.html
Replace this:
```
<textarea id="Title" name="Title" rows="2" cols="40" class="f-name">
<#item></textarea><br />
```
with this:
```
<input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='name="Title"/'>"/><br />
```
Replace this:
```
<input id="Author" name="Author" type="text" size="40" class="f-name" value="<#item>"><br />
```
with this:
```
<input id="Author" name="Author" type="text" size="40" class="f-name" value="<#PARAM name='name="Author"/'>"><br />
```
Replace this:
```
<input id="Publisher" name="Publisher" type="text" size="40" class="f-name" value="<#item>"><br />
```
with this:
```
<input id="Publisher" name="Publisher" type="text" size="40" class="f-name" value="<#PARAM name='name="Publisher"/'>"><br />
```
Replace this:
```
<input id="PubPlace" name="PubPlace" type="text" size="40" class="f-name" value="<#item>"><br />
```
with this:
```
<input id="PubPlace" name="PubPlace" type="text" size="40" class="f-name" value="<#PARAM name='name="PubPlace"/'>"><br />
```
Replace this:
```
<input id="PubDate" name="PubDate" type="text" size="40" class="f-name" value="<#item>"><br />
```
with this:
```
<input id="PubDate" name="PubDate" type="text" size="40" class="f-name" value="<#PARAM name='name="PubDate"/'>"><br />
```
Replace this:
```
<input id="Edition" name="Edition" type="text" size="40" class="f-name" value="<#item>"><br />
```
with this:
```
<input id="Edition" name="Edition" type="text" size="40" class="f-name" value="<#PARAM name='name="Edition"/'>"><br />
```
Replace this:
```
<input id="ISXN" name="ISXN" type="text" size="20" class="f-name" value="<#item>"><br />
```
with this:
```
<input id="ISXN" name="ISXN" type="text" size="20" class="f-name" value="<#PARAM name='name="ISXN"/'>"><br />
```
Replace this:
```
<input id="CallNumber" name="CallNumber" type="text" size="20" class="f-name" value="<#item>"><br />
```
with this:
```
<input id="CallNumber" name="CallNumber" type="text" size="20" class="f-name" value="<#PARAM name='name="CallNumber"/'>"><br />
```
Replace this:
```
<input id="ESPNumber" name="ESPNumber" type="text" size="20" class="f-name" value="<#item>"><br />
```
with this:
```
<input id="ESPNumber" name="ESPNumber" type="text" size="20" class="f-name" value="<#PARAM name='name="ESPNumber"/'>"><br />
```
Replace this:
```
<textarea id="Notes" name="ItemNote" rows="2" cols="40" class="f-name">
<#item></textarea>
```
with this:
```
<textarea id="Notes" name="ItemNote" rows="2" cols="40" class="f-name">
<#PARAM name='ItemNote'></textarea>
```
Replace this:
```
<input id="URL" name="URL" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="URL" name="URL" type="text" size="40" class="f-name" value="<#PARAM name='URL'>"><br />
```
Replace this:
```
<textarea id="CitedIn" name="CitedIn" rows="2" cols="40" class="f-name">
<#item></textarea><br />
```
with this:
```
<input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='name="CitedIn"/'>"/><br />
```
Replace this:
```
<input type="hidden" name="CopyrightRequired" value="<#ITEM>">
```
with this:
```
<input type="hidden" name="CopyrightRequired" value="<#PARAM name='name="CopyrightRequired"/'>">
```
Replace this:
```
<input type="hidden" name="CopyrightObtained" value="<#ITEM>">
```
with this:
```
<input type="hidden" name="CopyrightObtained" value="<#PARAM name='name="CopyrightObtained"/'>">
```
- IRFEditBook.html
Replace this:
```
<input id="Author" name="Author" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Author" name="Author" type="text" size="40" class="f-name" value="<#PARAM name='name="Author"/'>"><br />
```
Replace this:
```
<textarea id="Title" name="Title" rows="2" cols="40" class="f-name">
<#ITEM></textarea><br />
```
with this:
```
<input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='name="Title"/'>"/><br />
```
Replace this:
```
<input id="Publisher" name="Publisher" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Publisher" name="Publisher" type="text" size="40" class="f-name" value="<#PARAM name='name="Publisher"/'>"><br />
```
Replace this:
```
<input id="PubPlace" name="PubPlace" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="PubPlace" name="PubPlace" type="text" size="40" class="f-name" value="<#PARAM name='name="PubPlace"/'>"><br />
```
Replace this:
```
<input id="PubDate" name="PubDate" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="PubDate" name="PubDate" type="text" size="40" class="f-name" value="<#PARAM name='name="PubDate"/'>"><br />
```
Replace this:
```
<input id="Edition" name="Edition" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Edition" name="Edition" type="text" size="40" class="f-name" value="<#PARAM name='name="Edition"/'>"><br />
```
Replace this:
```
<input id="ISXN" name="ISXN" type="text" size="20" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="ISXN" name="ISXN" type="text" size="20" class="f-name" value="<#PARAM name='name="ISXN"/'>"><br />
```
Replace this:
```
<input id="CallNumber" name="CallNumber" type="text" size="20" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="CallNumber" name="CallNumber" type="text" size="20" class="f-name" value="<#PARAM name='name="CallNumber"/'>"><br />
```
Replace this:
```
<input id="ESPNumber" name="ESPNumber" type="text" size="20" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="ESPNumber" name="ESPNumber" type="text" size="20" class="f-name" value="<#PARAM name='name="ESPNumber"/'>"><br />
```
Replace this:
```
<textarea id="Notes" name="ItemNote" rows="2" cols="40" class="f-name"></textarea>
```
with this:
```
<textarea id="Notes" name="ItemNote" rows="2" cols="40" class="f-name"><#PARAM name='ItemNote'></textarea>
```
Replace this:
```
<textarea id="CitedIn" name="CitedIn" rows="2" cols="40" class="f-name"><#ITEM></textarea><br />
```
with this:
```
<input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='name="CitedIn"/'>"/><br />
```
Replace this:
```
<input type="hidden" name="CopyrightRequired" value="<#ITEM>">
```
with this:
```
<input type="hidden" name="CopyrightRequired" value="<#PARAM name='name="CopyrightRequired"/'>">
```
Replace this:
```
<input type="hidden" name="CopyrightObtained" value="<#ITEM>">
```
with this:
```
<input type="hidden" name="CopyrightObtained" value="<#PARAM name='name="CopyrightObtained"/'>">
```
- IRFEditBookChapter.html
Replace this:
```
<input id="Title" name="Title" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Title" name="Title" type="text" size="40" class="f-name" value="<#PARAM name='Title'>"><br />
```
Replace this:
```
<input id="ArticleTitle" name="ArticleTitle" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="ArticleTitle" name="ArticleTitle" type="text" size="40" class="f-name" value="<#PARAM name='ArticleTitle'>"><br />
```
Replace this:
```
<input id="Author" name="Author" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Author" name="Author" type="text" size="40" class="f-name" value="<#PARAM name='Author'>"><br />
```
Replace this:
```
<input id="Volume" name="Volume" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Volume" name="Volume" type="text" size="40" class="f-name" value="<#PARAM name='Volume'>"><br />
```
Replace this:
```
<input id="Publisher" name="Publisher" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Publisher" name="Publisher" type="text" size="40" class="f-name" value="<#PARAM name='name="Publisher"/'>"><br />
```
Replace this:
```
<input id="PubPlace" name="PubPlace" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="PubPlace" name="PubPlace" type="text" size="40" class="f-name" value="<#PARAM name='name="PubPlace"/'>"><br />
```
Replace this:
```
<input id="PubDate" name="PubDate" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="PubDate" name="PubDate" type="text" size="40" class="f-name" value="<#PARAM name='name="PubDate"/'>"><br />
```
Replace this:
```
<input id="Issue" name="Issue" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Edition" name="Edition" type="text" size="40" class="f-name" value="<#PARAM name='Edition'>"><br />
```
Replace this:
```
<input id="Pages" name="Pages" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Pages" name="Pages" type="text" size="40" class="f-name" value="<#PARAM name='Pages'>"><br />
```
Replace this:
```
<input id="ISXN" name="ISXN" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="ISXN" name="ISXN" type="text" size="40" class="f-name" value="<#PARAM name='ISXN'>"><br />
```
Replace this:
```
<input id="ESPNumber" name="ESPNumber" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="ESPNumber" name="ESPNumber" type="text" size="40" class="f-name" value="<#PARAM name='ESPNumber'>"><br />
```
Replace this:
```
<input id="CitedIn" name="CitedIn" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name='name="CitedIn"/'>"/><br />
```
Replace this:
```
<input id="URL" name="URL" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="URL" name="URL" type="text" size="40" class="f-name" value="<#PARAM name='URL'>"><br />
```
Replace this:
```
<input type="hidden" name="CopyrightRequired" value="<#ITEM>">
```
with this:
```
<input type="hidden" name="CopyrightRequired" value="<#PARAM name='name="CopyrightRequired"/'>">
```
Replace this:
```
<input type="hidden" name="CopyrightObtained" value="<#ITEM>">
```
with this:
```
<input type="hidden" name="CopyrightObtained" value="<#PARAM name='name="CopyrightObtained"/'>">
```
- IRFEditCreate.html
Replace this:
```
<input id="Title" name="Title" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Title" name="Title" type="text" size="40" class="f-name" value="<#PARAM name='Title'>"><br />
```
Replace this:
```
<input id="Author" name="Author" type="text" size="40" class="f-name" value="<#ITEM>"
```
with this:
```
<input id="Author" name="Author" type="text" size="40" class="f-name" value="<#PARAM name='Author'>"
```
Replace this:
```
<textarea id="Notes" name="ItemNote" rows="2" cols="40" class="f-name"></textarea>
```
with this:
```
<textarea id="Notes" name="ItemNote" rows="2" cols="40" class="f-name"><#PARAM name='Name="ItemNote"/'></textarea><br /><br />
```
Replace this:
```
<textarea id="ItemText" name="ItemText" rows="15" cols="80"><#ITEM></textarea>
```
with this:
```
<textarea id="ItemText" name="ItemText" rows="15" cols="80"><#PARAM name='ItemText'></textarea><br />
```
Replace this:
```
<input type="hidden" name="CopyrightRequired" value="<#ITEM>">
```
with this:
```
<input type="hidden" name="CopyrightRequired" value="<#PARAM name='name="CopyrightRequired"/'>">
```
- IRFEditInstructorUpload.html
Replace this:
```
<input id="Title" name="Title" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Title" name="Title" type="text" size="40" class="f-name" value="<#PARAM name='name="Title"/'>"><br />
```
Replace this:
```
<input id="Author" name="Author" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Author" name="Author" type="text" size="40" class="f-name" value="<#PARAM name='name="Author"/'>"><br />
```
Replace this:
```
<textarea id="Notes" name="ItemNote" rows="2" cols="40" class="f-name"></textarea>
```
with this:
```
<textarea id="Notes" name="ItemNote" rows="2" cols="40" class="f-name"><#PARAM name='ItemNote'></textarea>
```
Replace this:
```
<input type="hidden" name="CopyrightRequired" value="<#ITEM>">
```
with this:
```
<input type="hidden" name="CopyrightRequired" value="<#PARAM name='name="CopyrightRequired"/'>">
```
Replace this:
```
<input type="hidden" name="CopyrightObtained" value="<#ITEM>">
```
with this:
```
<input type="hidden" name="CopyrightObtained" value="<#PARAM name='name="CopyrightObtained"/'>">
```
- IRFEditVideo.html
Replace this:
```
<textarea id="Title" name="Title" rows="2" cols="40" class="f-name"><#ITEM></textarea><br />
```
with this:
```
<input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name='name="Title"/'>"/><br />
```
Replace this:
```
<input id="Author" name="Author" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Author" name="Author" type="text" size="40" class="f-name" value="<#PARAM name='name="Author"/'>"><br />
```
Replace this:
```
<input id="Publisher" name="Publisher" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Publisher" name="Publisher" type="text" size="40" class="f-name" value="<#PARAM name='name="Publisher"/'>"><br />
```
Replace this:
```
<input id="PubPlace" name="PubPlace" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="PubPlace" name="PubPlace" type="text" size="40" class="f-name" value="<#PARAM name='name="PubPlace"/'>"><br />
```
Replace this:
```
<input id="PubDate" name="PubDate" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="PubDate" name="PubDate" type="text" size="40" class="f-name" value="<#PARAM name='name="PubDate"/'>"><br />
```
Replace this:
```
<input id="Edition" name="Edition" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Edition" name="Edition" type="text" size="40" class="f-name" value="<#PARAM name='name="Edition"/'>"><br />
```
Replace this:
```
<input id="ISXN" name="ISXN" type="text" size="20" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="ISXN" name="ISXN" type="text" size="20" class="f-name" value="<#PARAM name='name="ISXN"/'>"><br />
```
Replace this:
```
<input id="CallNumber" name="CallNumber" type="text" size="20" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="CallNumber" name="CallNumber" type="text" size="20" class="f-name" value="<#PARAM name='name="CallNumber"/'>"><br />
```
Replace this:
```
<input id="ESPNumber" name="ESPNumber" type="text" size="20" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="ESPNumber" name="ESPNumber" type="text" size="20" class="f-name" value="<#PARAM name='name="ESPNumber"/'>"><br />
```
Replace this:
```
<textarea id="Notes" name="ItemNote" rows="2" cols="40" class="f-name"></textarea>
```
with this:
```
<textarea id="Notes" name="ItemNote" rows="2" cols="40" class="f-name"><#PARAM name='ItemNote'></textarea>
```
- IRFInstructorUpload.html
Replace this:
```
<input id="Title" name="Title" type="text" size="40" class="f-name"><#ITEM></textarea><br />
```
with this:
```
<input id="Title" name="Title" type="text" size="40" class="f-name" value="<#PARAM name='Title'>"><br />
```
Replace this:
```
<input id="Author" name="Author" type="text" size="40" class="f-name" value="<#ITEM>"><br />
```
with this:
```
<input id="Author" name="Author" type="text" size="40" class="f-name" value="<#PARAM name='name="Author"/'>"><br />
```
Miscellaneous Changes
The following are small changes and fixes made on various web pages.
- The IRFOpenURLArticle.html page was missing a hidden field specifying the Item Type.
IRFOpenURLArticle.html
Add this:
```
<input type="hidden" name="ItemType" value="SER" />
```
after this:
```
<form action="ares.dll" method="post" name="CreateCourse" class="f-wrap-request"><input type="hidden" name="Action" value="11"/><input type="hidden" name="Type" value="10"/><input type="hidden" name="OpenURL" value="1"/><input type="hidden" name="CopyrightRequired" value="Yes" /><input type="hidden" name="format" value="Article"/><input type="hidden" name="SessionID" value="<#PARAM name='SessionID'>">
```
- The IRFEditBookChapter.html page didn't have the "I do not want to change the actual reserve content" supply method option selected by default. This was due to other radio options containing the "checked" attribute.
IRFEditBookChapter.html
Replace this:
```
<label for="SupplyMethod"><#ERROR><b><span class="<#VALIDATION>">Would you like to change how this item is supplied?</span></b><fieldset> <label for="None"> <input id="None" type="radio" checked="checked" name="SupplyMethod" value="None" class="f-radio" />I do not want to change the actual reserve content </label>
<label for="File"> <input id="File" type="radio" checked="checked" name="SupplyMethod" value="File" class="f-radio" />I will upload a file </label>
<label for="WillDeliver"> <input id="WillDeliver" type="radio" name="SupplyMethod" value="WillDeliver" class="f-radio" />I will bring the material to the library </label>
<label for="WebLink"> <input id="WebLink" type="radio" name="SupplyMethod" value="WebLink" class="f-radio" />The item should link to a website </label>
<label for="StaffSearch"> <input id="StaffSearch" type="radio" name="SupplyMethod" value="StaffSearch" class="f-radio" />Please have library staff pull the material off the shelves </label></fieldset>
</label>
```
with this:
```
<label for="SupplyMethod"><#ERROR><strong> <span class="<#VALIDATION>" tabindex="0">Would you like to change how this item is supplied?</span></strong><fieldset><legend class="offscreen">Supply method</legend> <label for="None"> <input id="None" type="radio" checked="checked" name="SupplyMethod" value="None" class="f-radio" />I do not want to change the actual reserve content </label>
<label for="File"> <input id="File" type="radio" name="SupplyMethod" value="File" class="f-radio" />I will upload a file </label>
<label for="WillDeliver"> <input id="WillDeliver" type="radio" name="SupplyMethod" value="WillDeliver" class="f-radio" />I will bring the material to the library </label>
<label for="StaffSearch"> <input id="StaffSearch" type="radio" name="SupplyMethod" value="StaffSearch" class="f-radio" />Please have library staff pull the material off the shelves </label>
<label for="WebLink"> <input id="WebLink" type="radio" name="SupplyMethod" value="WebLink" class="f-radio" />The item should link to a website </label></fieldset>
</label>
```
- The AresAjax.js file was updated to make calls use jQuery. This page was changed extensively and will need to be replaced with the newest version. You can download this file along with the rest of the 4.6 default web pages at Ares 4.6 Downloads.