Ares 4.6 Web Page Changes - Archival Article

Print Friendly and PDF Follow

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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="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>
  • 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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="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="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="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="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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="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="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="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="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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="SessionID"/>';EnableSortPersistence("ItemTable");</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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="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="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="SessionID"/>';</script>
    </head>

    with this:

    <head>
    	<#INCLUDE filename="include_head.html">
    	<script>var sessionid = '<#PARAM 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 name="ERRORExternalCourseId">External Course ID</b>
    	<input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#COURSE field="ExternalCourseID"/>"><br />
    </label>
    -->
     
    <label for="CourseName">
    	<#ERROR name="ERRORCourseName">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORCourseName">">Course Name</span></b>
    	<input id="CourseName" name="CourseName" type="text" size="40" class="f-name" value="<#COURSE field="Name">"><br />
    </label>
     
    <label for="CourseNumber">
    	<#ERROR name="ERRORCourseNumber">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORCourseNumber">">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 field="CourseNumber">"><br />
    </label>
     
    <label for="CourseCode">
    	<#ERROR name="ERRORCourseCode">
    	<b><span class="<#VALIDATION name="ERRORCourseCode">">Section Number/Course Number</span></b>
    	<input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#COURSE field="CourseCode">"><br />
    </label>
     
    <label for="Department">
    	<#ERROR name="ERRORDepartment">
    	<b><span class="<#VALIDATION name="ERRORDepartment">"><span class="req">*</span>Department</span></b>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#Course field=department>" Size="1"><br/>
    </label>
     
    <label for="CourseSemester">
    	<#ERROR name="ERRORCourseSemester">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORSemester">">Course Semester</span></b>
    	<#COURSE field=Semester class="f-name"><br/>
    </label>
     
    <label for="CourseURL">
    	<#ERROR name="ERRORCourseURL">
    	<b><span class="<#VALIDATION name="ERRORCourseURL">">Course URL</span></b>
    	<input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#COURSE field="URL">"/><br />
    </label>
     
    <label for="CourseEnrollment">
    	<#ERROR name="ERRORCourseEnrollment">
    	<b><span class="<#VALIDATION name="ERRORCourseEnrollment">">Course Enrollment</span></b>
    	<input id="CourseEnrollment" name="CourseEnrollment" type="text" size="20" class="f-name" value="<#COURSE field="CourseEnrollment">"/><br />
    </label>
     
    <label for="CourseDescription">
    	<#ERROR name="ERRORCourseDescription">
    	<b><span class="<#VALIDATION name="ERRORCourseDescription">">Course Description</span></b>
    	<textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5"><#COURSE field="Description"/></textarea><br />
    </label>
     
    <label for="CourseInstructor">
    	<#ERROR name="ERRORCourseInstructor">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORCourseInstructor">">Course Instructor</span><br/><span class="note">(Last Name, First Name)</span></b>
    	<input type="text"" class="f-name" name="CourseInstructor" value="<#COURSE field="Instructor">"/>
    </label>
     
    <label for="CoursePassword">
    	<#ERROR name="ERRORCoursePassword">
    	<b><span class="<#VALIDATION name="ERRORCoursePassword">">Course Password</span></b>				 
    	<input type="text"" class="f-name" name="CoursePassword" value="<#COURSE field="CoursePassword">"/>
    </label> 	

    with this:

    <label for="CourseName"><#ERROR name="ERRORCourseName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseName">">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 name="ERRORExternalCourseId">
    	<strong>
    		<span class="<#VALIDATION name="ERRORExternalCourseId">">External Course ID</span>
    	</strong>
    	<input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name="ExternalCourseID"/>"><br />
    </label>
    -->
     
    <label for="CourseNumber"><#ERROR name="ERRORCourseNumber">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseNumber">">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 name="ERRORCourseCode">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseCode">">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 name="ERRORDepartment">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORDepartment">">Department</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=department>" Size="1"><br/>
    </label>
     
    <label for="Semester"><#ERROR name="ERRORCourseSemester">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseSemester">">Course Semester</span>
    	</strong>
    	<#OPTION name="Semester" SelectedValue="<#PARAM name=Semester>" class="f-name"><br/>
    </label>
     
    <label for="CourseURL"><#ERROR name="ERRORCourseURL">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseURL">">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 name="ERRORCourseEnrollment">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseEnrollment">">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 name="ERRORCourseDescription">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseDescription">">Course Description</span>
    	</strong>
    	<input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name="CourseDescription"/>"/><br />
    </label>
     
    <label for="CourseInstructor"><#ERROR name="ERRORCourseInstructor">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseInstructor">">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 name="ERRORCoursePassword">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCoursePassword">">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 name="ERRORDepartment">
    	<b><span class="req">*</span><span class="<#VALIDATION Name="ERRORDepartment">">Cross Listed Department</span></b>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=Department>" Size="1"><br/>
    </label>
     
    <label for="CourseNumber">
    	<#ERROR name="ERRORCourseNumber">
    	<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 name="ERRORCourseName">
    	<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 name="ERRORCourseCode">
    	<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 name="ERRORDepartment">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION Name="ERRORDepartment">">Cross Listed Department</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=Department>" Size="1"><br/>
    </label>
     
    <label for="CourseNumber"><#ERROR name="ERRORCourseNumber">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION Name="ERRORCourseNumber">">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 name="ERRORCourseName">
    	<strong>
    		<span class="<#VALIDATION Name="ERRORCourseName">">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 name="ERRORCourseCode">
    	<strong>
    		<span class="<#VALIDATION Name="ERRORCourseCode">">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 name="ERRORExternalCourseId">External Course ID</b>
    	<input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name="ExternalCourseID"/>"><br />
    </label>
    -->
     
    <label for="CourseName">
    	<#ERROR name="ERRORCourseName">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORCourseName">">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 name="ERRORCourseNumber">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORCourseNumber">">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 name="ERRORCourseCode">
    	<b><span class="<#VALIDATION name="ERRORCourseCode">">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 name="InstructorUsernames" useJavascriptNames="True" headerText="<label for='CourseInstructor'><#ERROR name='ERRORInstructorUsername'><b>Instructor&rsquo;s Username</b>" class="f-name" footerText="<br /></label>"/>
    <label for="CourseInstructor">
    	<#ERROR name="ERRORCourseInstructor">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORCourseInstructor">">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 name="ERRORDepartment">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORDepartment">">Department</span></b>
    	<#OPTION name='Custom' Cssclass='f-dept' GroupName='Department' AddTopOption="Choose a Department" Size='1' ExcludeJoinedValues='True'><br/>
    </label>
     
    <label for="CourseSemester">
    	<#ERROR name="ERRORCourseSemester">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORSemester">">Course Semester</span></b>
    	<#OPTION name="Semester" class="f-name"><br/>
    </label>
     
    <label for="CourseURL">
    	<#ERROR name="ERRORCourseURL">
    	<b><span class="<#VALIDATION name="ERRORCourseURL">">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 name="ERRORCourseEnrollment">
    	<b><span class="<#VALIDATION name="ERRORCourseEnrollment">">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 name="ERRORCourseDescription">
    	<b><span class="<#VALIDATION name="ERRORCourseDescription">">Course Description</span></b>
    	<textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5"><#PARAM name="CourseDescription"/></textarea><br />
    </label>
     
    <#OPTION name="PickupLocation" selectedValue="Leavey" headerText="<label for='Pickup Location'><b><span class='<#VALIDATION name=ERRORPickupLocation>'>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 name="ERRORCoursePassword">
    	<b><span class="<#VALIDATION name="ERRORCoursePassword">">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="AddAuthorizedUsers"/></textarea>
    </label> 

    with this:

    <!--
    <label for="ExternalCourseId"><#ERROR name="ERRORExternalCourseId">
    	<strong>
    		<span class="<#Validation name="ERRORExternalCourseId">">External Course ID</span>
    	</strong>
    	<input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name="ExternalCourseID"/>"><br />
    </label>
    -->
     
    <label for="CourseName"><#ERROR name="ERRORCourseName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseName">">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 name="ERRORCourseNumber">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseNumber">">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 name="ERRORCourseCode">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseCode">">Course Code</span>
    	</strong>
    	<input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#PARAM name="CourseCode">"><br />
    </label>
     
    <#OPTION name="InstructorUsernames" useJavascriptNames="True" headerText="<label for='CourseInstructor'><#ERROR name='ERRORInstructorUsername'><strong><span class='field'>Instructor&rsquo;s Username</span></strong>" class='f-name' footerText='<br/></label>'>
     
    <label for="CourseInstructor"><#ERROR name="ERRORCourseInstructor">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseInstructor">">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 name="ERRORDepartment">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORDepartment">">Department</span>
    	</strong>
    	<#OPTION name='Custom' Cssclass='f-dept' GroupName='Department' AddTopOption=	"Choose a Department" Size='1' ExcludeJoinedValues='True'><br/>
    </label>
     
    <label for="CourseSemester"><#ERROR name="ERRORCourseSemester">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseSemester">">Course Semester</span>
    	</strong>
    	<#OPTION name="Semester" class="f-name"><br/>
    </label>
     
    <label for="CourseURL"><#ERROR name="ERRORCourseURL">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseURL">">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 name="ERRORCourseEnrollment">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseEnrollment">">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 name="ERRORCourseDescription">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseDescription">">Course Description</span>
    	</strong>
    	<input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name="CourseDescription"/>"/><br />	
    </label>
     
    <#OPTION name="PickupLocation" selectedValue="<#CUSTOMIZATION name='DefaultPickupSite'>" headerText="<label for='PickupLocation'><strong><span class='<#VALIDATION name=ERRORPickupLocation>'>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 name="ERRORCoursePassword">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCoursePassword">">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="AddAuthorizedUsers"/></textarea>
    </label>

     

  • ICourseClone.html

    Replace this:

    <!--
    <label for="ExternalCourseId">
    	<b><#ERROR name="ERRORExternalCourseId">External Course Id</b>
    	<input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name="ExternalCourseID"/>"><br />
    </label>
    -->
     
    <label for="CourseName">
    	<#ERROR name="ERRORCourseName">
    	<b><span class="req">*</span>Course Name</b>
    	<input type="text" class="f-name" id="CourseName" name="CourseName" value="<#COURSE field=Name>" size="40"><br />
    </label>
     
    <label for="CourseNumber">
    	<#ERROR name="ERRORCourseNumber">
    	<b><span class="req">*</span>Course Number</b>
    	<input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#COURSE field="coursenumber">"><br />
    </label>
     
    <label for="CourseCode">
    	<#ERROR name="ERRORCourseCode">
    	<b>Section Number/Course Number</b>
    	<input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#COURSE field="CourseCode">"><br />
    </label>
     
    <label for="CourseInstructor">
    	<#ERROR name="ERRORCourseInstructor">
    	<b><span class="req">*</span>Instructor</b>
    	<input id="CourseInstructor" name="CourseInstructor" type="text" size="40" class="f-name" value="<#COURSE field="Instructor">"><br />
    </label>
     
    <label for="Department">
    	<#ERROR name="ERRORDepartment">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORDepartment">">Department</span></b>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#Course field=department>" Size="1"><br/>
    </label>
     
    <label for="CourseSemester">
    	<#ERROR name="ERRORCourseSemester">
    	<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 name="Semester" class="f-name" onChange="GetSemesterStartStop(document.getElementById('Semester').value);"/><br/>
    </label>
     
    <label for="CourseURL">
    	<#ERROR name="ERRORCourseURL">
    	<b>Course URL</b>
    	<input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#COURSE field="URL">"/><br />
    </label>
     
    <label for="CourseDescription">
    	<#ERROR name="ERRORCourseDescription">
    	<b>Course Description</b>
    	<textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5"><#COURSE field="Description"/></textarea><br />
    </label>
     
    <label for="CoursePassword">
    	<#ERROR name="ERRORCoursePassword">
    	<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 field="CoursePassword">"/><br />
    </label>
     
    <label for='Pickup Location'>
    	<#OPTION name="PickupLocation" selectedValue="<COURSE field="DefaultPickupSite" />" headerText="<b><span class='<#VALIDATION name=ERRORPickupLocation>'>Default Pickup Location for Physical Items</span></b>"><br />
    </label>
     
    <label for="CloneItemTags">
    	<#ERROR name="ERRORCloneItemTags">
    	<b>Clone Item Tags</b>
    	<input type="checkbox" id="CloneItemTags" name="CloneItemTags" class="f-checkbox" />
    	<br />
    </label>

    with this:

    <!--
    <label for="ExternalCourseId"><#ERROR name="ERRORExternalCourseId">
    	<strong>
    		<span class="<#Validation name="ERRORExternalCourseId">">External Course Id</span>
    	</strong>
    	<input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class=	"f-name" value="<#PARAM name="ExternalCourseID"/>"><br />
    </label>
    -->
     
    <label for="CourseName"><#ERROR name="ERRORCourseName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORCourseName">">Course Name</span>
    	</strong>
    	<input type="text" class="f-name" id="CourseName" name="CourseName" value="<#PARAM name=CourseName>" size="40" /><br />
    </label>
     
    <label for="CourseNumber"><#ERROR name="ERRORCourseNumber">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORCourseNumber">">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 name="ERRORCourseCode">
    	<strong>
    		<span class="<#Validation name="ERRORCourseCode">">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 name="ERRORCourseInstructor">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORCourseInstructor">">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 name="ERRORDepartment">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORDepartment">">Department</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=department>" Size="1"><br/>
    </label>
     
    <label for="Semester"><#ERROR name="ERRORCourseSemester">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseSemester">">Course Semester</span><br/>
    		<span class="note">Choose the semester when you will be teaching this course again</span>
    	</strong>
    	<#OPTION name="Semester" class="f-name" onChange="GetSemesterStartStop(document.getElementById('Semester').value);"/><br/>
    </label>
     
    <label for="CourseURL"><#ERROR name="ERRORCourseURL">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseURL">">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 name="ERRORCourseDescription">
    	<strong>
    		<span class="<#VALIDATION name="ERRORDepartment">">Course Description</span>
    	</strong>
    	<input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name="CourseDescription"/>"/><br />
    </label>
     
    <label for="CoursePassword"><#ERROR name="ERRORCoursePassword">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCoursePassword">">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 name="ERRORPickupLocation">
    	<#OPTION name="PickupLocation" selectedValue="<COURSE field="DefaultPickupSite" />" headerText="<strong><span class='<#VALIDATION name=ERRORPickupLocation>'>Default Pickup Location for Physical Items</span></strong>"><br />
    </label>
     
    <label for="CloneItemTags"><#ERROR name="ERRORCloneItemTags">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCloneItemTags">">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 Name="ERRORAddAuthorizedUsers">
    			<strong>
    				<span class="<#VALIDATION name="ERRORAddAuthorizedUsers">">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 Name="ERRORRemoveAuthorizedUsers">
    			<strong>
    				<span class="<#VALIDATION name="ERRORRemoveAuthorizedUsers">">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 name="ERRORPassword1">"><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 name="ERRORPassword2">"><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 name="ERRORPassword1">">New Password</span>
    	</strong>
    	<input id="Password1" name="Password1" type="password" size="40" class="f-name" value="<#PARAM name="Password1">"><br />
    	<#ERROR name="ERRORPassword1">
    </label>
     
    <label for="Password2">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORPassword2">">Re-enter New Password</span>
    	</strong>
    	<input id="Password2" name="Password2" type="password" size="40" class="f-name" value="<#PARAM name="Password2">"><br />
    	<#ERROR name="ERRORPassword2">
    </label>

     

  • NewAuthRegistration.html

    Replace this:

    <label for="FirstName">
    	<b><#ERROR Name="ERRORFirstName"><span class="req">*</span>First Name</b>
    	<input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM name="FirstName"/>"><br />
    </label>
     
    <label for="LastName">
    	<b><#ERROR Name="ERRORLastName"><span class="req">*</span>Last Name</b>
    	<input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM name="LastName"/>"><br />
    </label>
     
    <label for="LibraryID">
    	<b><#ERROR Name="ERRORLibraryID"><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="LibraryID"/>"><br />
    </label>
     
    <label for="EMailAddress">
    	<b><#ERROR Name="ERROREMailAddress"><span class="req">*</span>EMail Address</b>
    	<input id="EMailAddress" name="EMailAddress" type="text" size="40" class="f-name" value="<#PARAM name="EmailAddress"/>"><br />
    </label>
     
    <label for="Phone1">
    	<b><#ERROR Name="ERRORPhone1"><span class="req">*</span>Phone Number</b>
    	<input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM name="Phone1"/>"><br />
    </label>
     
    <label for="Address1">
    	<b><#ERROR Name="ERRORAddress1"><span class="req">*</span>Address</b>
    	<input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM name="Address1"/>"><br />
    </label>
     
    <label for="Address2">
    	<b><#ERROR Name="ERRORAddress2">Address 2</b>
    	<input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name="Address2"/>">
    </label>
     
    <label for="City">
    	<b><#ERROR name="ERRORCity"><span class="req">*</span>City</b>
    	<input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM name="City"/>"><br />
    </label>
     
    <label for="State">
    	<b><#ERROR name="ERRORState"><span class="req">*</span>State</b>
    	<!--<input id="State" name="State" type="text" size="20" class="f-name" value="<#PARAM name="State"/>"><br />-->
    	<#OPTION name="Custom" GroupName="State" SelectedValue="<#PARAM name=State>" 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="Zip"/>"><br />
    </label>
     
    <input type="hidden" name="StatusGroup" value="<#PARAM name="StatusGroup"/>">
    <!--If you allow the user to change their status -->
    <!--
    <label for="StatusGroup">
    	<b><#ERROR name="ERRORStatusGroup">Status</b>
    	<#OPTION name="Custom" GroupName="StatusGroup" SelectedValue="<#PARAM name=StatusGroup>" Size="1"><br/>
    </label>
    -->
     
    <label for="Department">
    	<b><#ERROR name="ERRORDepartment">Department</b>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=Department>" Size="1"><br/>
    </label>
     
    <label for="CourseEmailDefault">
    	<b><span class="<#Validation name="ERRORCourseEmailDefault">"><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 Name="ERRORFirstName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORFirstName">">First Name</span>
    	</strong>
    	<input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM name="FirstName"/>"><br />
    </label>
     
    <label for="LastName"><#ERROR Name="ERRORLastName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORLastName">">Last Name</span>
    	</strong>
    	<input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM name="LastName"/>"><br />
    </label>
     
    <label for="LibraryID"><#ERROR Name="ERRORLibraryID">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORLibraryID">">Library ID/NetID/	Some unique campus number</span>
    	</strong>
    	<input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM name="LibraryID"/>"><br />
    </label>
     
    <label for="EmailAddress"><#ERROR Name="ERROREmailAddress">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERROREmailAddress">">Email Address</span>
    	</strong>
    	<input id="EmailAddress" name="EmailAddress" type="text" size="40" class="f-name" value="<#PARAM name="EmailAddress"/>"><br />
    </label>
     
    <label for="Phone1"><#ERROR Name="ERRORPhone1">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORPhone1">">Phone Number</span>
    	</strong>
    	<input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM name="Phone1"/>"><br />
    </label>
     
    <label for="Address1"><#ERROR Name="ERRORAddress1">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORAddress1">">Address</span>
    	</strong>
    	<input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM name="Address1"/>"><br />
    </label>
     
    <label for="Address2"><#ERROR Name="ERRORAddress2">
    	<strong>
    		<span class="<#Validation name="ERRORAddress2">">Address 2</span>
    	</strong>
    	<input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name="Address2"/>">
    </label>
     
    <label for="City"><#ERROR name="ERRORCity">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORCity">">City</span>
    	</strong>
    	<input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM name="City"/>"><br />
    </label>
     
    <label for="State"><#ERROR name="ERRORState">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORState">">State</span>
    	</strong>
    	<!--<input id="State" name="State" type="text" size="20" class="f-name" value="<#PARAM name="State"/>"><br />-->
    	<#OPTION name="Custom" GroupName="State" SelectedValue="<#PARAM name=State>" Size="1"><br/>
    </label>
     
    <label for="Zip"><#ERROR name="ERRORZip">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORZip">">Zip Code</span>
    	</strong>
    	<input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM name="Zip"/>"><br />
    </label>
     
    <input type="hidden" name="StatusGroup" value="<#PARAM name="StatusGroup"/>">
    <!--If you allow the user to change their status -->
    <!--
    <label for="StatusGroup"><#ERROR name="ERRORStatusGroup">
    	<strong>
    		<span class="<#Validation name="ERRORStatusGroup">">Status</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="StatusGroup" SelectedValue="<#PARAM name=StatusGroup>" Size="1"><br/>
    </label>
    -->
     
    <label for="Department"><#ERROR name="ERRORDepartment">
    	<strong>
    		<span class="<#Validation name="ERRORDepartment">">Department</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=Department>" Size="1"><br/>
    </label>
     
    <label for="CourseEmailDefault"><#ERROR name="ERRORCourseEmailDefault">
    	<strong>
    		<span class="<#Validation name="ERRORCourseEmailDefault">" 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 Name="ERRORCurrentPassword"><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 Name="ERRORPassword1"><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 Name="ERRORPasswordHint"><span class="req">*</span>Password Hint</b>
    	<input id="PasswordHint" name="Passwordhint" type="text" size="40" class="f-name" value="<#USER Field="PasswordHint"/>"><br />
    </label> 

    with this:

    <label for="CurrentPassword">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCurrentPassword">">Current Password</span>
    	</strong>
    	<input id="CurrentPassword" name="CurrentPassword" type="password" size="40" class="f-name" /><br />
    	<#ERROR name="ERRORCurrentPassword" />
    </label>
     
    <label for="Password1">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name='ERRORPassword1'>">New Password</span>
    	</strong>
    	<input id="Password1" name="Password1" type="password" size="40" class="f-name" /><br />
    	<#ERROR name="ERRORPassword1" />
    </label>
     
    <label for="Password2">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name='ERRORPassword2'>">Confirm New Password</span>
    	</strong>
    	<input id="Password2" name="Password2" type="password" size="40" class="f-name" /><br />
    	<#ERROR name="ERRORPassword2" />
    </label>
     
    <label for="PasswordHint"><#ERROR name="ERRORPasswordHint">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name='ERRORPasswordHint'>">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 Name="ERRORFirstName"><span class="req">*</span>First Name</b>
    	<input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM name="FirstName"/>"><br />
    </label>
     
    <label for="Last Name">
    	<b><#ERROR Name="ERRORLastName"><span class="req">*</span>Last Name</b>
    	<input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM name="LastName"/>"><br />
    </label>
     
    <label for="LibraryID">
    	<b><#ERROR Name="ERRORLibraryID"><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="LibraryID"/>"><br />
    </label>
     
    <label for="EMailAddress">
    	<b><#ERROR Name="ERROREMailAddress"><span class="req">*</span>EMail Address</b>
    	<input id="EMailAddress" name="EMailAddress" type="text" size="40" class="f-name" value="<#PARAM name="EmailAddress"/>"><br />
    </label>
     
    <label for="Phone1">
    	<b><#ERROR Name="ERRORPhone1"><span class="req">*</span>Phone Number</b>
    	<input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM name="Phone1"/>"><br />
    </label>
     
    <label for="Address1">
    	<b><#ERROR Name="ERRORAddress1"><span class="req">*</span>Address</b>
    	<input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM name="Address1"/>"><br />
    </label>
     
    <label for="Address2">
    	<b><#ERROR Name="ERRORAddress2">Address 2</b>
    	<input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name="Address2"/>"><br />
    </label>
     
    <label for="City">
    	<b><#ERROR name="ERRORCity"><span class="req">*</span>City</b>
    	<input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM name="City"/>"><br />
    </label>
     
    <label for="State">
    	<b><#ERROR name="ERRORState"><span class="req">*</span>State</b>
    	<!--<input id="State" name="State" type="text" size="20" class="f-name" value="<#PARAM name="State"/>"><br />-->
    	<#OPTION name="Custom" GroupName="State" SelectedValue="<#PARAM name=State>" 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="Zip"/>"><br />
    </label>
     
    <input type="hidden" name="StatusGroup" value="<#PARAM name="StatusGroup"/>">
    <!--If you allow the user to change their status -->
    <!--
    <label for="StatusGroup">
    	<b><#ERROR name="ERRORStatusGroup">Status</b>
    	<#OPTION name="Custom" GroupName="StatusGroup" SelectedValue="<#PARAM name=StatusGroup>" Size="1"><br/>
    </label>
    -->
     
    <label for="Department">
    	<b><#ERROR name="ERRORDepartment">Department</b>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=Department>" Size="1"><br/>
    </label>
     
    <label for="CourseEmailDefault">
    	<b><span class="<#Validation name="ERRORCourseEmailDefault">"><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 Name="ERRORFirstName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORFirstName">">First Name</span>
    	</strong>
    	<input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM name="FirstName"/>"><br />
    </label>
     
    <label for="LastName"><#ERROR Name="ERRORLastName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORLastName">">Last Name</span>
    	</strong>
    	<input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM name="LastName"/>"><br />
    </label>
     
    <label for="LibraryID"><#ERROR Name="ERRORLibraryID">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORLibraryID">">Library ID/NetID/Some unique campus number</span>
    	</strong>
    	<input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM name="LibraryID"/>"><br />
    </label>
     
    <label for="EmailAddress"><#ERROR Name="ERROREmailAddress">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERROREmailAddress">">Email Address</span>
    	</strong>
    	<input id="EmailAddress" name="EmailAddress" type="text" size="40" class="f-name" value="<#PARAM name="EmailAddress"/>"><br />
    </label>
     
    <label for="Phone1"><#ERROR Name="ERRORPhone1">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORPhone1">">Phone Number</span>
    	</strong>
    	<input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM name="Phone1"/>"><br />
    </label>
     
    <label for="Address1"><#ERROR Name="ERRORAddress1">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORAddress1">">Address</span>
    	</strong>
    	<input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM name="Address1"/>"><br />
    </label>
     
    <label for="Address2"><#ERROR Name="ERRORAddress2">
    	<strong>
    		<span class="<#Validation name="ERRORAddress2">">Address 2</span>
    	</strong>
    	<input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name="Address2"/>"><br />
    </label>
     
    <label for="City"><#ERROR name="ERRORCity">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORCity">">City</span>
    	</strong>
    	<input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM name="City"/>"><br />
    </label>
     
    <label for="State"><#ERROR name="ERRORState">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORState">">State</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="State" SelectedValue="<#PARAM name=State>" Size="1"><br/>
    </label>
     
    <label for="Zip"><#ERROR name="ERRORZip">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORZip">">Zip Code</span>
    	</strong>
    	<input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM name="Zip"/>"><br />
    </label>
     
    <input type="hidden" name="StatusGroup" value="<#PARAM name="StatusGroup"/>">
    <!--If you allow the user to change their status -->
    <!--
    <label for="StatusGroup"><#ERROR name="ERRORStatusGroup">
    	<strong>
    		<span class="<#Validation name="ERRORStatusGroup">">Status</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="StatusGroup" SelectedValue="<#PARAM name=StatusGroup>" Size="1"><br/>
    </label>
    -->
     
    <label for="Department"><#ERROR name="ERRORDepartment">
    	<strong>
    		<span class="<#Validation name="ERRORDepartment">">Department</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=Department>" Size="1"><br/>
    </label>
     
    <label for="CourseEmailDefault"><#ERROR name="ERRORCourseEmailDefault">
    	<strong>
    		<span class="<#Validation name="ERRORCourseEmailDefault">" 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 name='ERRORUsername'>"><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 Name="ERRORUsername">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name='ERRORUsername'>">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 name="ERRORUsername">"><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="Username"/>"><br />
    </label>
                    	
    <label for="FirstName">
    	<span class="<#Validation name="ERRORFirstName">"><b><span class="req">*</span>First Name</b></span>
    	<input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM Name="FirstName"/>"><br />
    </label>
     
    <label for="Last Name">
    	<span class="<#Validation name="ERRORLastName">"><b><span class="req">*</span>Last Name</b></span>
    	<input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM Name="LastName"/>"><br />
    </label>
     
    <label for="LibraryID">
    	<span class="<#Validation name="ERRORLibraryID">"><b><span class="req">*</span>Library ID</b></span>
    	<input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM Name="LibraryID"/>"><br />
    </label>
     
    <label for="EMailAddress">
    	<span class="<#Validation name="ERROREMailAddress">"><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="EmailAddress"/>"><br />
    </label>
     
    <label for="Phone1">
    	<span class="<#Validation name="ERRORPhone1">"><b><span class="req">*</span>Phone Number</b></span>
    	<input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM Name="Phone1"/>"><br />
    </label>
     
    <label for="Address1">
    	<span class="<#Validation name="ERRORAddress1">"><b><span class="req">*</span>Address</b></span>
    	<input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM 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="Address2"/>">
    </label>
     
    <label for="City">
    	<span class="<#Validation name="ERRORCity">"><b><span class="req">*</span>City</b></span>
    	<input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM Name="City"/>"><br />
    </label>
     
    <label for="State">
    	<span class="<#Validation name="ERRORState">"><b><span class="req">*</span>State</b></span>
    	<#OPTION name="Custom" GroupName="State" SelectedValue="<#PARAM name=State>" Size="1"><br/>
    </label>
     
    <label for="Zip">
    	<span class="<#Validation name="ERRORZip">"><b><span class="req">*</span>Zip Code</b></span>
    	<input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM Name="Zip"/>"><br />
    </label>
     
    <label for="StatusGroup">
    	<span class="<#Validation name="ERRORStatus">"><b><span class="req">*</span>Status</b></span>
    	<#OPTION name="Custom" GroupName="StatusGroup" SelectedValue="<#PARAM name=StatusGroup>" Size="1"><br/>
    </label>
     
    <label for="Department">
    	<span class="<#Validation name="ERRORDepartment">"><b><span class="req">*</span>Department</b></span>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=Department>" Size="1"><br/>
    </label>
     
    <label for="Password1">
    	<span class="<#Validation name="ERRORPassword1">"><b><span class="req">*</span>Password</b></span>
    	<input id="Password1" name="Password1" type="password" size="40" class="f-name" value="<#PARAM Name="Password1"/>"><br />
    </label>
     
    <label for="Password2">
    	<span class="<#Validation name="ERRORPassword2">"><b><span class="req">*</span>Confirm Password</b></span>
    	<input id="Password2" name="Password2" type="password" size="40" class="f-name" value="<#PARAM 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="PasswordHint"/>"><br />
    </label>
     
    <label for="CourseEmailDefault">
    	<b><span class="<#Validation name="ERRORCourseEmailDefault">"><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 Name="ERRORUsername">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORUsername">">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="Username"/>"><br />
    </label>
     
    <label for="FirstName"><#ERROR Name="ERRORFirstName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORFirstName">">First Name</span>
    	</strong>
    	<input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value=	"<#PARAM Name="FirstName"/>"><br />
    </label>
     
    <label for="LastName"><#ERROR Name="ERRORLastName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORLastName">">Last Name</span>
    	</strong>
    	<input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM Name="LastName"/>"><br />
    </label>
     
    <label for="LibraryID"><#ERROR Name="ERRORLibraryID">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORLibraryID">">Library ID</span>
    	</strong>
    	<input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM Name="LibraryID"/>"><br />
    </label>
     
    <label for="EmailAddress"><#ERROR Name="ERROREmailAddress">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERROREmailAddress">">Email Address</span>
    	</strong>
    	<input id="EmailAddress" name="EmailAddress" type="text" size="40" class="f-name" value="<#PARAM Name="EmailAddress"/>"><br />
    </label>
     
    <label for="Phone1"><#ERROR Name="ERRORPhone1">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORPhone1">">Phone Number</span>
    	</strong>
    	<input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM Name="Phone1"/>"><br />
    </label>
     
    <label for="Address1"><#ERROR Name="ERRORAddress1">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORAddress1">">Address</span>
    	</strong>
    	<input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM Name="Address1"/>"><br />
    </label>
     
    <label for="Address2"><#ERROR Name="ERRORAddress2">
    	<strong>
    		<span class="<#Validation name="ERRORAddress2">">Address 2</span>
    	</strong>
    	<input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name="Address2"/>"><br />
    </label>
     
    <label for="City"><#ERROR Name="ERRORCity">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORCity">">City</span>
    	</strong>
    	<input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM Name="City"/>"><br />
    </label>
     
    <label for="State"><#ERROR Name="ERRORState">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORState">">State</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="State" SelectedValue="<#PARAM name=State>" Size="1"><br/>
    </label>
     
    <label for="Zip"><#ERROR Name="ERRORZip">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORZip">">Zip Code</span>
    	</strong>
    	<input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM Name="Zip"/>"><br />
    </label>
     
    <label for="StatusGroup"><#ERROR Name="ERRORStatus">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORStatus">">Status</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="StatusGroup" SelectedValue="<#PARAM name=StatusGroup>" Size="1"><br/>
    </label>
     
    <label for="Department"><#ERROR Name="ERRORDepartment">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORDepartment">">Department</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=Department>" Size="1"><br/>
    </label>
     
    <label for="Password1">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORPassword1">">Password</span>
    	</strong>
    	<input id="Password1" name="Password1" type="password" size="40" class="f-name" value="<#PARAM Name="Password1"/>"><br />
    	<#ERROR Name="ERRORPassword1">
    </label>
     
    <label for="Password2">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORPassword2">">Confirm Password</span>
    	</strong>
    	<input id="Password2" name="Password2" type="password" size="40" class="f-name" value="<#PARAM Name="Password2"/>"><br />
    	<#ERROR Name="ERRORPassword2">
    </label>
     
    <label for="PasswordHint"><#ERROR name="ERRORPasswordHint">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name='ERRORPasswordHint'>">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 name="ERRORCourseEmailDefault">" 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 name="InstructorUsernames" useJavascriptNames="True" headerText="<label for='CourseInstructor'><#ERROR name='ERRORInstructorUsername'><b>Instructor&rsquo;s Username</b>" tabindex="25" class="f-name" footerText="<br /></label>"/>
     
    <label for="SharedListName">
    <#ERROR name="ERRORSharedListName">
    <b><span class="req">*</span><span class="<#VALIDATION name="ERRORSharedListName">">Shared List Name</span></b>

    with this:

    <#OPTION name="InstructorUsernames" useJavascriptNames="True" headerText="<label for='CourseInstructor'><#ERROR name='ERRORInstructorUsername'><strong>Instructor&rsquo;s Username</strong>" class="f-name" footerText="<br /></label>"/>
     
    <label for="SharedListName"><#ERROR name="ERRORSharedListName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORSharedListName">">Shared List Name</span>
    	</strong>

     

  • ISharedListEdit.html

    Replace this:

    <label for="SharedListName">
    	<#ERROR name="ERRORSharedListName">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORSharedListName">">Shared List Name</span></b>

    with this:

    <label for="SharedListName"><#ERROR name="ERRORSharedListName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORSharedListName">">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, CourseItemRestrictionsSharedList, 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 class="instructor-table" name="SharedListItem" id="SharedListItemTable" headerText="List Items" LinkType="ItemInfo" AllowRowClick="Yes" LinkColumn="BotTitlesIcon" AllowJavascriptHover="Yes" column:"ListItemID:ID" column:"BothTitlesIcon:Title" column:"Author:Author" NoDataAction="ShowMessage" NoDataMessage="There are no items in this shared list." allowsort="true">

    with this:

    <#TABLE class="instructor-table filterTable" name="SharedListItem" id="SharedListItemTable" headerText="List Items" LinkType="ItemInfo" LinkColumn="BotTitlesIcon" column:"ListItemID:ID" column:"BothTitlesIcon:Title" column:"Author:Author" NoDataAction="ShowMessage" NoDataMessage="There are no items in this shared list." allowsort="true">

     

  • UCourseInfo.html

    Replace this:

    <#TABLE class="student-table" id="SearchResults" name="Item" type="CourseItems" headerText="Reserve Items" LinkType="ItemView" AllowRowClick="Yes" IconDirect="True" LinkColumn="BothTitlesViewedIcon" AllowJavascriptHover="Yes"  column="BothTitlesViewedIcon:Title" column="Author:Author" column="InactiveDate:Available until" column="Tags:Tags" HotList="Yes" hotListAdd="True" hotListAddText="Add checked items to <#CUSTOMIZATION name='HotListName'>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION name='HotListName'>" UnreadItem="<img src='images/new.gif' alt='New Item'/>" ReadItem="" NoDataAction="ShowMessage" NoDataMessage="There are no items in this course.">

    with this:

    <#TABLE class="student-table filterTable" id="SearchResults" name="Item" type="CourseItems" headerText="Reserve Items" LinkType="ItemView" IconDirect="True" LinkColumn="BothTitlesViewedIcon"  column="BothTitlesViewedIcon:Title" column="Author:Author" column="InactiveDate:Available until" column="Tags:Tags" HotList="Yes" hotListAdd="True" hotListAddText="Add checked items to <#CUSTOMIZATION name='HotListName'>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION name='HotListName'>" 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 class="student-table" id="SearchResults" name="Item" type="courseitems" headerText="Reserve Items" LinkType="ItemView" AllowRowClick="Yes" IconDirect="True" LinkColumn="BothTitles" AllowJavascriptHover="Yes" column="BothTitlesIcon:Title" column="Author:Author" column="InactiveDate:Available until" HotList="Yes" hotListAdd="True" hotListAddText="Add checked items to <#CUSTOMIZATION name='HotListName'>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION name='HotListName'>" 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 class="student-table filterTable" id="SearchResults" name="Item" type="courseitems" headerText="Reserve Items" LinkType="ItemView" IconDirect="True" LinkColumn="BothTitles" column="BothTitlesIcon:Title" column="Author:Author" column="InactiveDate:Available until" HotList="Yes" hotListAdd="True" hotListAddText="Add checked items to <#CUSTOMIZATION name='HotListName'>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION name='HotListName'>" 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 class="student-table" name="Item" headerText="My <#CUSTOMIZATION name='HotListName'>" 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 name='HotListName'>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION name='HotListName'>" ONLYHotListItems="Yes" NoDataAction="ShowNothing">

    with this:

    <#TABLE name="Item" class="student-table filterTable" headerText="My <#CUSTOMIZATION name='HotListName'>" 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 name='HotListName'>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION name='HotListName'>" ONLYHotListItems="Yes" NoDataAction="ShowNothing">

     

  • UHotList.html

    Replace this:

    <#TABLE class="student-table" name="Item" headerText="My <#CUSTOMIZATION name='HotListName'>" 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 name='HotListName'>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION name='HotListName'>" ONLYHotListItems="Yes" NoDataAction="ShowNothing">

    with this:

    <#TABLE class="student-table filterTable" name="Item" headerText="My <#CUSTOMIZATION name='HotListName'>" 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 name='HotListName'>" hotListDelete="True" hotListDeleteText="Remove checked items from <#CUSTOMIZATION name='HotListName'>" ONLYHotListItems="Yes" NoDataAction="ShowMessage" NoDataMessage="No items found.">

     

  • USearchResults.html

    Replace this:

    <#TABLE class="student-table" name="Item" headerText="Search Results" LinkType="ItemInfo" AllowRowClick="Yes" LinkColumn="BothTitles" AllowJavascriptHover="Yes" column="BothTitles:Title" column="Author:Author" column="CourseNumber:Course" column="Instructor:Instructor" column="UserViewed" column="Tags:Tags" UnreadItem="<img src='images/new.gif' alt='New Item'/>" ReadItem="<img src='images/itemviewed.gif' alt='PreviouslyViewed'/>" NoDataAction="ShowMessage" NoDataMessage="Your search produced no results.">

    with this:

    <#TABLE class="student-table filterTable" name="Item" headerText="Search Results" LinkType="ItemInfo" LinkColumn="BothTitles" column="BothTitles:Title" column="Author:Author" column="CourseNumber:Course" column="Instructor:Instructor" column="UserViewed" column="Tags:Tags" UnreadItem="<img src='images/new.gif' alt='New Item'/>" ReadItem="<img src='images/itemviewed.gif' alt='PreviouslyViewed'/>" NoDataAction="ShowMessage" NoDataMessage="Your search produced no results.">

     

  • ISharedListInfo.html

    Replace this:

    <#TABLE class="instructor-table" name="SharedListItem" id="SharedListItemTable" headerText="List Items" LinkType="ItemInfo" AllowRowClick="Yes" LinkColumn="BotTitlesIcon" AllowJavascriptHover="Yes" column:"ListItemID:ID" column:"BothTitlesIcon:Title" column:"Author:Author" NoDataAction="ShowMessage" NoDataMessage="There are no items in this shared list." allowsort="true">

    with this:

    <#TABLE class="instructor-table filterTable" name="SharedListItem" id="SharedListItemTable" headerText="List Items" LinkType="ItemInfo" LinkColumn="BotTitlesIcon" column:"ListItemID:ID" column:"BothTitlesIcon:Title" column:"Author:Author" NoDataAction="ShowMessage" NoDataMessage="There are no items in this shared list." allowsort="true">

     

  • ISearchResults.html

    Replace this:

    <#TABLE class="instructor-table" name="Item" headerText="Search Results" LinkType="ItemEdit" AllowRowClick="Yes" LinkColumn="BothTitles" AllowJavascriptHover="Yes" column="BothTitles:Title" column="Author:Author" column="CourseNumber:Course" column="CurrentStatus:Status" column="UserViewed" column="Tags:Tags" UnreadItem="<img src='images/new.gif' alt='New Item'/>" ReadItem="<img src='images/itemviewed.gif' alt='PreviouslyViewed'/>" NoDataAction="ShowMessage" NoDataMessage="Your search produced no results.">

    with this:

    <#TABLE class="instructor-table filterTable" name="Item" headerText="Search Results" LinkType="ItemEdit" LinkColumn="BothTitles" column="BothTitles:Title" column="Author:Author" column="CourseNumber:Course" column="CurrentStatus:Status" column="UserViewed" column="Tags:Tags" UnreadItem="<img src='images/new.gif' alt='New Item'/>" ReadItem="<img src='images/itemviewed.gif' alt='PreviouslyViewed'/>" NoDataAction="ShowMessage" NoDataMessage="Your search produced no results.">

     

  • GSearchResults.html

    Replace this:

    <#TABLE class="student-table" name="Item" headerText="Search Results" AllowPublic="true" LinkType="ItemInfo" AllowRowClick="Yes" LinkColumn="BothTitles" AllowJavascriptHover="Yes" column="BothTitles:Title" column="Author:Author" column="CourseNumber:Course" column="Instructor:Instructor" NoDataAction="ShowMessage" NoDataMessage="Your search produced no results.">

    with this:

    <#TABLE class="student-table filterTable" name="Item" headerText="Search Results" AllowPublic="true" LinkType="ItemInfo" LinkColumn="BothTitles" column="BothTitles:Title" column="Author:Author" column="CourseNumber:Course" column="Instructor:Instructor" NoDataAction="ShowMessage" NoDataMessage="Your search produced no results.">

     

  • IPreviousCourseList.html

    Replace this:

    <#TABLE name="Course" class="instructor-table" AllowRowClick="Yes" headerText="Previous Courses" LinkColumn="CourseNumber" AllowJavascriptHover="True" Session="Previous" Role="Instructor" column="Semester:Semester" column="CourseNumber:Course" column="CourseCode:Section Number" column="Name:Name" NoDataAction="ShowMessage" NoDataMessage="No courses found." orderby="C.StopDate DESC,C.CourseNumber ASC">

    with this:

    <#TABLE name="Course" class="instructor-table filterTable" headerText="Previous Courses" LinkColumn="CourseNumber" Session="Previous" Role="Instructor" column="Semester:Semester" column="CourseNumber:Course" column="CourseCode:Course Code" column="Name:Name" NoDataAction="ShowMessage" NoDataMessage="No courses found." orderby="C.StopDate DESC,C.CourseNumber ASC">

     

  • ICourseInfo.html

    Replace this:

    <#TABLE class="instructor-table" name="Item" id="ItemTable" type="CourseItems" headerText="Reserve Items" LinkType="ItemInfo" AllowRowClick="Yes" LinkColumn="BothTitlesIcon" AllowJavascriptHover="Yes" column="ItemID:ID" column="BothTitlesIcon:Title" column="Author:Author" column="inactiveDate:Inactive" column="CurrentStatus:Status" column="Tags:Tags" NoDataAction="ShowMessage" NoDataMessage="There are no items in this course." allowsort="true">

    with this:

    <#TABLE class="instructor-table filterTable" name="Item" id="ItemTable" type="CourseItems" headerText="Reserve Items" LinkType="ItemInfo" LinkColumn="BothTitlesIcon" column="ItemID:ID" column="BothTitlesIcon:Title" column="Author:Author" column="inactiveDate:Inactive" column="CurrentStatus:Status" column="Tags:Tags" NoDataAction="ShowMessage" NoDataMessage="There are no items in this course." allowsort="true">

     

  • IInstructorSharedLists.html

    Replace this:

    <#TABLE name="SharedList" class="instructor-table" AllowRowClick="Yes" headerText="Instructor Shared Lists" LinkColumn="ListID" AllowJavascriptHover="True" ListType="Instructor" column="ListID:List ID" column="ListName:List Name" column="ListReference:Instructor Name" NoDataAction="ShowMessage" NoDataMessage="No Shared Lists found.">

    with this:

    <#TABLE name="SharedList" class="instructor-table filterTable" headerText="Instructor Shared Lists" LinkColumn="ListID" ListType="Instructor" column="ListID:List ID" column="ListName:List Name" column="ListReference:Instructor Name" NoDataAction="ShowMessage" NoDataMessage="No Shared Lists found.">

     


     Replace this:

    <#TABLE name="SharedList" class="instructor-table" AllowRowClick="Yes" headerText="Department Shared Lists" LinkColumn="ListID" AllowJavascriptHover="True" ListType="Department" column="ListID:List ID" column="ListName:List Name" column="ListReference:Department" NoDataAction="ShowMessage" NoDataMessage="No Shared Lists found.">

    with this:

    <#TABLE name="SharedList" class="instructor-table filterTable" headerText="Department Shared Lists" LinkColumn="ListID" ListType="Department" column="ListID:List ID" column="ListName:List Name" column="ListReference:Department" NoDataAction="ShowMessage" NoDataMessage="No Shared Lists found.">

     

  • IHome.html

    Replace this:

    <#TABLE class="instructor-table" name="Item" headerText="Awaiting Supply By Instructor" ShowHiddenItems="True" LinkType="ItemEdit" AllowRowClick="Yes" LinkColumn="BothTitlesIcon" AllowJavascriptHover="True" column="BothTitlesIcon:Title" column="Author:Author" column="Department:Department" column="CourseNumber:Course" ItemStatus="Awaiting Supply By Instructor" NoDataAction="ShowNothing">

    with this:

    <#TABLE class="instructor-table filterTable" name="Item" headerText="Awaiting Supply By Instructor" ShowHiddenItems="True" LinkType="ItemEdit" LinkColumn="BothTitlesIcon" column="BothTitlesIcon:Title" column="Author:Author" column="Department:Department" column="CourseNumber:Course" ItemStatus="Awaiting Supply By Instructor" NoDataAction="ShowNothing">

     

  • ICourseTags.html

    Replace this:

    <#TABLE class="instructor-table" name="Item" type="CourseItems" headerText="Reserve Items" LinkType="ItemInfo" AllowRowClick="Yes" LinkColumn="BothTitles" AllowJavascriptHover="Yes" column="BothTitles:Title" column="Author:Author" column="inactiveDate:Inactive" column="CurrentStatus:Status" column="UserViewed" column="Tags:Tags" UnreadItem="<img src='images/new.gif' alt='New Item'/>" ReadItem="<img src='images/itemviewed.gif' alt='PreviouslyViewed'/>" NoDataAction="ShowMessage" NoDataMessage="There are no items in this course." allowsort="true">

    with this:

    <#TABLE class="instructor-table filterTable" name="Item" type="CourseItems" headerText="Reserve Items" LinkType="ItemInfo" LinkColumn="BothTitles" column="BothTitles:Title" column="Author:Author" column="inactiveDate:Inactive" column="CurrentStatus:Status" column="UserViewed" column="Tags:Tags" UnreadItem="<img src='images/new.gif' alt='New Item'/>" 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="124" value="CourseID" valuetype="Lookup">">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="60" ValueType="Lookup" Value="CourseID">">Course Home</a></li>
    		<li><a href="<#ACTION action="20" type="11" ValueType="Lookup" Value="CourseID">">Edit Course</a></li>
    		<li><a href="<#ACTION action="10" form="122" value="CourseID" valuetype="Lookup">">Cross Listings</a></li>
    		<li><a href="<#ACTION action="10" form="114" value="CourseID" valuetype="Lookup">">Clone Course</a></li>
    		<li><a href="<#ACTION action="10" form="112" value="CourseID" valuetype="Lookup">">Course Proxy Users</a></li>
    		<li><a href="<#ACTION action="10" form="113" value="CourseID" valuetype="Lookup">">Authorized Users</a></li>
    		<li><a href="<#ACTION action="10" form="2" value="IRFMenu">&CourseID=<#COURSE field="CourseID">">Add Reserve Items</a></li>
    		<li><a href="<#ACTION action="10" form="66" value="CourseID" valuetype="Lookup">">Messageboard</a></li>
    		<li><a href="<#ACTION action="10" form="115" value="CourseID" valuetype="Lookup">">Reserve Item Usage</a></li>
    		<li class="last"><a href="<#ACTION action="10" form="123" value="CourseID" valuetype="Lookup">">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="73">">My EMails</a></li>

    with this:

    <li class="last"><a href="<#ACTION action="10" form="73">">My Emails</a></li>

     

  • include_fullproxysharedlistmenu.html

    Replace this:

    <li class="last"><a href="<#ACTION action="10" form="73">">My EMails</a></li>

    with this:

    <li class="last"><a href="<#ACTION action="10" form="73">">My Emails</a></li>

     

  • include_instructorcoursemenu.html 

    Replace this:

    <li class="last"><a href="<#ACTION action="10" form="73">">My EMails</a></li>

    with this:

    <li class="last"><a href="<#ACTION action="10" form="73">">My Emails</a></li>

     

  • include_instructorsharedlistmenu.html

    Replace this:

    <li class="last"><a href="<#ACTION action="10" form="73">">My EMails</a></li>

    with this:

    <li class="last"><a href="<#ACTION action="10" form="73">">My Emails</a></li>

     

  • include_menu.html

    Replace this:

    <li class="last"><a href="<#ACTION action="10" form="73">">My EMails</a></li>

    with this:

    <li class="last"><a href="<#ACTION action="10" form="73">">My Emails</a></li>

     

  • include_studentcoursemenu.html

    Replace this:

    <li class="last"><a href="<#ACTION action="10" form="73">">My EMails</a></li>

    with this:

    <li class="last"><a href="<#ACTION action="10" form="73">">My Emails</a></li>

     

  • ChangeUserInformation.html

    Replace this:

    <label for="EMailAddress">
    	<b><#ERROR Name="ERROREMailAddress"><span class="req">*</span>EMail Address</b>
    	<input id="EMailAddress" name="EMailAddress" type="text" size="40" class="f-name" value="<#PARAM name="EmailAddress"/>"><br />
    </label>

    with this:

    <label for="EmailAddress"><#ERROR Name="ERROREmailAddress">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERROREmailAddress">">Email Address</span>
    	</strong>
    	<input id="EmailAddress" name="EmailAddress" type="text" size="40" class="f-name" value="<#PARAM name="EmailAddress"/>"><br />
    </label>

     

  • GCreateAccount.html

    Replace this:

    <label for="EMailAddress">
    	<span class="<#Validation name="ERROREMailAddress">"><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="EmailAddress"/>"><br />
    </label>

    with this:

    <label for="EmailAddress"><#ERROR Name="ERROREmailAddress">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERROREmailAddress">">Email Address</span>
    	</strong>
    	<input id="EmailAddress" name="EmailAddress" type="text" size="40" class="f-name" value="<#PARAM Name="EmailAddress"/>"><br />
    </label>

     

  • NewAuthRegistration.html

    Replace this:

    <label for="EMailAddress">
    	<b><#ERROR Name="ERROREMailAddress"><span class="req">*</span>EMail Address</b>
    	<input id="EMailAddress" name="EMailAddress" type="text" size="40" class="f-name" value="<#PARAM name="EmailAddress"/>"><br />
    </label>

    with this:

    <label for="EmailAddress"><#ERROR Name="ERROREmailAddress">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERROREmailAddress">">Email Address</span>
    	</strong>
    	<input id="EmailAddress" name="EmailAddress" type="text" size="40" class="f-name" value="<#PARAM name="EmailAddress"/>"><br />
    </label>

     

  • ViewItemNotificationsDetail.html

    Replace this:

    <#TABLE name="NotificationInformation" headerText="Notification Information" hideColumnHeaders="true" field="Item:Reserve Item" field="EMailFrom:From" field="EMailDate:Date" field="Subject:Subject" field="Body:Body"><br />

    with this:

    <#TABLE name="NotificationInformation" headerText="Notification Information" hideColumnHeaders="true" field="Item:Reserve Item" field="EmailFrom:From" field="EmailDate:Date" field="Subject:Subject" field="Body:Body"><br />

     

  • ViewNotificationsDetail.html

    Replace this:

    <#TABLE name="NotificationInformation" headerText="Notification Information" hideColumnHeaders="true" field="Item:Reserve Item" field="EMailFrom:From" field="EMailDate:Date" field="Subject:Subject" field="Body:Body"><br />

    with this:

    <#TABLE name="NotificationInformation" headerText="Notification Information" hideColumnHeaders="true" field="Item:Reserve Item" field="EmailFrom:From" field="EmailDate:Date" field="Subject:Subject" field="Body:Body"><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 name="ERRORPassword1">"><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 name="ERRORPassword2">"><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 name="ERRORPassword1">">New Password</span>
    	</strong>
    	<input id="Password1" name="Password1" type="password" size="40" class="f-name" value="<#PARAM name="Password1">"><br />
    	<#ERROR name="ERRORPassword1">
    </label>
     
    <label for="Password2">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORPassword2">">Re-enter New Password</span>
    	</strong>
    	<input id="Password2" name="Password2" type="password" size="40" class="f-name" value="<#PARAM name="Password2">"><br />
    	<#ERROR name="ERRORPassword2">
    </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 Name="ERRORCurrentPassword"><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 Name="ERRORPassword1"><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 Name="ERRORPasswordHint"><span class="req">*</span>Password Hint</b>
    	<input id="PasswordHint" name="Passwordhint" type="text" size="40" class="f-name" value="<#USER Field="PasswordHint"/>"><br />
    </label>

    with this:

    <label for="CurrentPassword">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCurrentPassword">">Current Password</span>
    	</strong>
    	<input id="CurrentPassword" name="CurrentPassword" type="password" size="40" class="f-name" /><br />
    	<#ERROR name="ERRORCurrentPassword" />
    </label>
     
    <label for="Password1">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name='ERRORPassword1'>">New Password</span>
    	</strong>
    	<input id="Password1" name="Password1" type="password" size="40" class="f-name" /><br />
    	<#ERROR name="ERRORPassword1" />
    </label>
     
    <label for="Password2">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name='ERRORPassword2'>">Confirm New Password</span>
    	</strong>
    	<input id="Password2" name="Password2" type="password" size="40" class="f-name" /><br />
    	<#ERROR name="ERRORPassword2" />
    </label>
     
    <label for="PasswordHint"><#ERROR name="ERRORPasswordHint">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name='ERRORPasswordHint'>">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 name='ERRORUsername'>"><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 Name="ERRORUsername">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name='ERRORUsername'>">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 Name="ERRORFirstName"><span class="req">*</span>First Name</b>
    	<input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM name="FirstName"/>"><br />
    </label>
     
    <label for="LastName">
    	<b><#ERROR Name="ERRORLastName"><span class="req">*</span>Last Name</b>
    	<input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM name="LastName"/>"><br />
    </label>
     
    <label for="LibraryID">
    	<b><#ERROR Name="ERRORLibraryID"><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="LibraryID"/>"><br />
    </label>
     
    <label for="EMailAddress">
    	<b><#ERROR Name="ERROREMailAddress"><span class="req">*</span>EMail Address</b>
    	<input id="EMailAddress" name="EMailAddress" type="text" size="40" class="f-name"value="<#PARAM name="EmailAddress"/>"><br />
    </label>
     
    <label for="Phone1">
    	<b><#ERROR Name="ERRORPhone1"><span class="req">*</span>Phone Number</b>
    	<input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM name="Phone1"/>"><br />
    </label>
     
    <label for="Address1">
    	<b><#ERROR Name="ERRORAddress1"><span class="req">*</span>Address</b>
    	<input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM name="Address1"/>"><br />
    </label>
     
    <label for="Address2">
    	<b><#ERROR Name="ERRORAddress2">Address 2</b>
    	<input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name="Address2"/>">
    </label>
     
    <label for="City">
    	<b><#ERROR name="ERRORCity"><span class="req">*</span>City</b>
    	<input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM name="City"/>"><br />
    </label>
     
    <label for="State">
    	<b><#ERROR name="ERRORState"><span class="req">*</span>State</b>
    	<!--<input id="State" name="State" type="text" size="20" class="f-name" value="<#PARAM name="State"/>"><br />-->
    	<#OPTION name="Custom" GroupName="State" SelectedValue="<#PARAM name=State>" 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="Zip"/>"><br />
    </label>
     
    <input type="hidden" name="StatusGroup" value="<#PARAM name="StatusGroup"/>">
    <!--If you allow the user to change their status -->
    <!--
    <label for="StatusGroup">
    	<b><#ERROR name="ERRORStatusGroup">Status</b>
    	<#OPTION name="Custom" GroupName="StatusGroup" SelectedValue="<#PARAM name=StatusGroup>" Size="1"><br/>
    </label>
    -->
     
    <label for="Department">
    	<b><#ERROR name="ERRORDepartment">Department</b>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=Department>" Size="1"><br/>
    </label>
     
    <label for="CourseEmailDefault">
    	<b><span class="<#Validation name="ERRORCourseEmailDefault">"><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 Name="ERRORFirstName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORFirstName">">First Name</span>
    	</strong>
    	<input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM name="FirstName"/>"><br />
    </label>
     
    <label for="LastName"><#ERROR Name="ERRORLastName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORLastName">">Last Name</span>
    	</strong>
    	<input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM name="LastName"/>"><br />
    </label>
     
    <label for="LibraryID"><#ERROR Name="ERRORLibraryID">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORLibraryID">">Library ID/NetID/Some unique campus number</span>
    	</strong>
    	<input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM name="LibraryID"/>"><br />
    </label>
     
    <label for="EmailAddress"><#ERROR Name="ERROREmailAddress">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERROREmailAddress">">Email Address</span>
    	</strong>
    	<input id="EmailAddress" name="EmailAddress" type="text" size="40" class="f-name" value="<#PARAM name="EmailAddress"/>"><br />
    </label>
     
    <label for="Phone1"><#ERROR Name="ERRORPhone1">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORPhone1">">Phone Number</span>
    	</strong>
    	<input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM name="Phone1"/>"><br />
    </label>
     
    <label for="Address1"><#ERROR Name="ERRORAddress1">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORAddress1">">Address</span>
    	</strong>
    	<input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM name="Address1"/>"><br />
    </label>
     
    <label for="Address2"><#ERROR Name="ERRORAddress2">
    	<strong>
    		<span class="<#Validation name="ERRORAddress2">">Address 2</span>
    	</strong>
    	<input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name="Address2"/>">
    </label>
     
    <label for="City"><#ERROR name="ERRORCity">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORCity">">City</span>
    	</strong>
    	<input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM name="City"/>"><br />
    </label>
     
    <label for="State"><#ERROR name="ERRORState">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORState">">State</span>
    	</strong>
    	<!--<input id="State" name="State" type="text" size="20" class="f-name" value="<#PARAM name="State"/>"><br />-->
    	<#OPTION name="Custom" GroupName="State" SelectedValue="<#PARAM name=State>" Size="1"><br/>                	
    </label>
     
    <label for="Zip"><#ERROR name="ERRORZip">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORZip">">Zip Code</span>
    	</strong>
    	<input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM name="Zip"/>"><br />
    </label>
     
    <input type="hidden" name="StatusGroup" value="<#PARAM name="StatusGroup"/>">
    <!--If you allow the user to change their status -->
    <!--
    <label for="StatusGroup"><#ERROR name="ERRORStatusGroup">
    	<strong>
    		<span class="<#Validation name="ERRORStatusGroup">">Status</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="StatusGroup" SelectedValue="<#PARAM name=StatusGroup>" Size="1"><br/>
    </label>
    -->
     
    <label for="Department"><#ERROR name="ERRORDepartment">
    	<strong>
    		<span class="<#Validation name="ERRORDepartment">">Department</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=Department>" Size="1"><br/>
    </label>
     
    <label for="CourseEmailDefault"><#ERROR name="ERRORCourseEmailDefault">
    	<strong>
    		<span class="<#Validation name="ERRORCourseEmailDefault">" 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 name="ERRORExternalCourseId">External Course ID</b>
    	<input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#COURSE field="ExternalCourseID"/>"><br />
    </label>
    -->
     
    <label for="CourseName">
    	<#ERROR name="ERRORCourseName">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORCourseName">">Course Name</span></b>
    	<input id="CourseName" name="CourseName" type="text" size="40" class="f-name" value="<#COURSE field="Name">"><br />
    </label>
     
    <label for="CourseNumber">
    	<#ERROR name="ERRORCourseNumber">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORCourseNumber">">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 field="CourseNumber">"><br />
    </label>
     
    <label for="CourseCode">
    	<#ERROR name="ERRORCourseCode">
    	<b><span class="<#VALIDATION name="ERRORCourseCode">">Section Number/Course Number</span></b>
    	<input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#COURSE field="CourseCode">"><br />
    </label>
     
    <label for="Department">
    	<#ERROR name="ERRORDepartment">
    	<b><span class="<#VALIDATION name="ERRORDepartment">"><span class="req">*</span>Department</span></b>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#Course field=department>" Size="1"><br/>
    </label>
     
    <label for="CourseSemester">
    	<#ERROR name="ERRORCourseSemester">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORSemester">">Course Semester</span></b>
    	<#COURSE field=Semester class="f-name"><br/>
    </label>
     
    <label for="CourseURL">
    	<#ERROR name="ERRORCourseURL">
    	<b><span class="<#VALIDATION name="ERRORCourseURL">">Course URL</span></b>
    	<input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#COURSE field="URL">"/><br />
    </label>
     
    <label for="CourseEnrollment">
    	<#ERROR name="ERRORCourseEnrollment">
    	<b><span class="<#VALIDATION name="ERRORCourseEnrollment">">Course Enrollment</span></b>
    	<input id="CourseEnrollment" name="CourseEnrollment" type="text" size="20" class="f-name" value="<#COURSE field="CourseEnrollment">"/><br />
    </label>
     
    <label for="CourseDescription">
    	<#ERROR name="ERRORCourseDescription">
    	<b><span class="<#VALIDATION name="ERRORCourseDescription">">Course Description</span></b>
    	<textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5">
    	<#COURSE field="Description"/></textarea><br />
    </label>
     
    <label for="CourseInstructor">
    	<#ERROR name="ERRORCourseInstructor">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORCourseInstructor">">Course Instructor</span><br/>
    	<span class="note">(Last Name, First Name)</span></b>
    	<input type="text"" class="f-name" name="CourseInstructor" value="<#COURSE field="Instructor">"/>
    </label>
     
    <label for="CoursePassword">
    	<#ERROR name="ERRORCoursePassword">
    	<b><span class="<#VALIDATION name="ERRORCoursePassword">">Course Password</span></b>
    	<input type="text"" class="f-name" name="CoursePassword" value="<#COURSE field="CoursePassword">"/>
    </label> 	

    with this:

    <label for="CourseName"><#ERROR name="ERRORCourseName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseName">">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 name="ERRORExternalCourseId">
    	<strong>
    		<span class="<#VALIDATION name="ERRORExternalCourseId">">External Course ID</span>
    	</strong>
    	<input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name="ExternalCourseID"/>"><br />
    </label>
    -->
     
    <label for="CourseNumber"><#ERROR name="ERRORCourseNumber">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseNumber">">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 name="ERRORCourseCode">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseCode">">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 name="ERRORDepartment">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORDepartment">">Department</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=department>" Size="1"><br/>
    </label>
     
    <label for="Semester"><#ERROR name="ERRORCourseSemester">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseSemester">">Course Semester</span>
    	</strong>
    	<#OPTION name="Semester" SelectedValue="<#PARAM name=Semester>" class="f-name"><br/>
    </label>
     
    <label for="CourseURL"><#ERROR name="ERRORCourseURL">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseURL">">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 name="ERRORCourseEnrollment">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseEnrollment">">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 name="ERRORCourseDescription">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseDescription">">Course Description</span>
    	</strong>
    	<input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name="CourseDescription"/>"/><br />
    </label>
     
    <label for="CourseInstructor"><#ERROR name="ERRORCourseInstructor">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseInstructor">">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 name="ERRORCoursePassword">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCoursePassword">">Course Password</span>
    	</strong>
    	<input type="text" id="CoursePassword" class="f-name" name="CoursePassword" value="<#PARAM name="CoursePassword">"/>
    </label> 	

     


     Replace this:

    <#OPTION name="PickupLocation" selectedValue="<COURSE field="DefaultPickupSite" />" headerText="<label for='Pickup Location'><b><span class='<#VALIDATION name=ERRORPickupLocation>'>Default Pickup Location for Physical Items</span></b>" footerText="<br /></label>">

    with this:

    <#OPTION name="PickupLocation" selectedValue="<#PARAM name="PickupLocation" />" headerText="<label for='PickupLocation'><strong><span class='<#VALIDATION name=ERRORPickupLocation>'>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 name="ERRORDepartment">
    	<b><span class="req">*</span><span class="<#VALIDATION Name="ERRORDepartment">">Cross Listed Department</span></b>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=Department>" Size="1"><br/>
    </label>
     
    <label for="CourseNumber">
    	<#ERROR name="ERRORCourseNumber">
    	<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 name="ERRORCourseName">
    	<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 name="ERRORCourseCode">
    	<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 name="ERRORDepartment">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION Name="ERRORDepartment">">Cross Listed Department</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=Department>" Size="1"><br/>
    </label>
     
    <label for="CourseNumber"><#ERROR name="ERRORCourseNumber">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION Name="ERRORCourseNumber">">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 name="ERRORCourseName">
    	<strong>
    		<span class="<#VALIDATION Name="ERRORCourseName">">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 name="ERRORCourseCode">
    	<strong>
    		<span class="<#VALIDATION Name="ERRORCourseCode">">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 name="InstructorUsernames" useJavascriptNames="True" headerText="<label for='CourseInstructor'><#ERROR name='ERRORInstructorUsername'><b>Instructor&rsquo;s Username</b>" class="f-name" footerText="<br /></label>"/>

    with this:

    <#OPTION name="InstructorUsernames" useJavascriptNames="True" headerText="<label for='CourseInstructor'><#ERROR name='ERRORInstructorUsername'><strong><span class='field'>Instructor&rsquo;s Username</span></strong>" class='f-name' footerText='<br/></label>'>

     


     Replace this:

    <#OPTION name="PickupLocation" selectedValue="Leavey" headerText="<label for='Pickup Location'><b><span class='<#VALIDATION name=ERRORPickupLocation>'>Default Pickup Location for Physical Items</span></b>" footerText="<br /></label>">

    with this:

    <#OPTION name="PickupLocation" selectedValue="<#CUSTOMIZATION name='DefaultPickupSite'>" headerText="<label for='PickupLocation'><strong><span class='<#VALIDATION name=ERRORPickupLocation>'>Default Pickup Location for Physical Items</span></strong>" footerText="<br /></label>">

     


     Replace this:

    <!--
    <label for="ExternalCourseId">
    	<b><#ERROR name="ERRORExternalCourseId">External Course ID</b>
    	<input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name="ExternalCourseID"/>"><br />
    </label>
    -->
     
    <label for="CourseName">
    	<#ERROR name="ERRORCourseName">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORCourseName">">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 name="ERRORCourseNumber">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORCourseNumber">">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 name="ERRORCourseCode">
    	<b><span class="<#VALIDATION name="ERRORCourseCode">">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 name="ERRORCourseInstructor">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORCourseInstructor">">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 name="ERRORDepartment">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORDepartment">">Department</span></b>
    	<#OPTION name='Custom' Cssclass='f-dept' GroupName='Department' AddTopOption="Choose a Department" Size='1' ExcludeJoinedValues='True'><br/>
    </label>
     
    <label for="CourseSemester">
    	<#ERROR name="ERRORCourseSemester">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORSemester">">Course Semester</span></b>
    	<#OPTION name="Semester" class="f-name"><br/>
    </label>
     
    <label for="CourseURL">
    	<#ERROR name="ERRORCourseURL">
    	<b><span class="<#VALIDATION name="ERRORCourseURL">">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 name="ERRORCourseEnrollment">
    	<b><span class="<#VALIDATION name="ERRORCourseEnrollment">">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 name="ERRORCourseDescription">
    	<b><span class="<#VALIDATION name="ERRORCourseDescription">">Course Description</span></b>
    	<textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5"><#PARAM 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 name="ERRORCoursePassword">
    	<b><span class="<#VALIDATION name="ERRORCoursePassword">">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="AddAuthorizedUsers"/></textarea>
    </label>

    with this:

    <!--
    <label for="ExternalCourseId"><#ERROR name="ERRORExternalCourseId">
    	<strong>
    		<span class="<#Validation name="ERRORExternalCourseId">">External Course ID</span>
    	</strong>
    	<input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name="ExternalCourseID"/>"><br />
    </label>
    -->
     
    <label for="CourseName"><#ERROR name="ERRORCourseName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseName">">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 name="ERRORCourseNumber">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseNumber">">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 name="ERRORCourseCode">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseCode">">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 name="ERRORCourseInstructor">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseInstructor">">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 name="ERRORDepartment">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORDepartment">">Department</span>
    	</strong>
    	<#OPTION name='Custom' Cssclass='f-dept' GroupName='Department' AddTopOption="Choose a Department" Size='1' ExcludeJoinedValues='True'><br/>
    </label>
     
    <label for="CourseSemester"><#ERROR name="ERRORCourseSemester">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseSemester">">Course Semester</span>
    	</strong>
    	<#OPTION name="Semester" class="f-name"><br/>
    </label>
     
    <label for="CourseURL"><#ERROR name="ERRORCourseURL">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseURL">">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 name="ERRORCourseEnrollment">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseEnrollment">">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 name="ERRORCourseDescription">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseDescription">">Course Description</span>
    	</strong>
    	<input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM 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 name="ERRORCoursePassword">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCoursePassword">">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="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 name="PickupLocation" selectedValue="<COURSE field="DefaultPickupSite" />" headerText="<b><span class='<#VALIDATION name=ERRORPickupLocation>'>Default Pickup Location for Physical Items</span>/b>">

    with this:

    <#OPTION name="PickupLocation" selectedValue="<COURSE field="DefaultPickupSite" />" headerText="<strong><span class='<#VALIDATION name=ERRORPickupLocation>'>Default Pickup Location for Physical Items</span></strong>">

     


     Replace this:

    <!--
    <label for="ExternalCourseId">
    	<b><#ERROR name="ERRORExternalCourseId">External Course Id</b>
    	<input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name="ExternalCourseID"/>"><br />
    </label>
    -->
     
    <label for="CourseName">
    	<#ERROR name="ERRORCourseName">
    	<b><span class="req">*</span>Course Name</b>
    	<input type="text" class="f-name" id="CourseName" name="CourseName" value="<#COURSE field=Name>" size="40"><br />
    </label>
     
    <label for="CourseNumber">
    	<#ERROR name="ERRORCourseNumber">
    	<b><span class="req">*</span>Course Number</b>
    	<input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#COURSE field="coursenumber">"><br />
    </label>
     
    <label for="CourseCode">
    	<#ERROR name="ERRORCourseCode">
    	<b>Section Number/Course Number</b>
    	<input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#COURSE field="CourseCode">"><br />
    </label>
     
    <label for="CourseInstructor">
    	<#ERROR name="ERRORCourseInstructor">
    	<b><span class="req">*</span>Instructor</b>
    	<input id="CourseInstructor" name="CourseInstructor" type="text" size="40" class="f-name" value="<#COURSE field="Instructor">"><br />
    </label>
     
    <label for="Department">
    	<#ERROR name="ERRORDepartment">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORDepartment">">Department</span></b>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#Course field=department>" Size="1"><br/>
    </label>
     
    <label for="CourseSemester">
    	<#ERROR name="ERRORCourseSemester">
    	<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 name="Semester" class="f-name" onChange="GetSemesterStartStop(document.getElementById('Semester').value);"/><br/>
    </label>
     
    <label for="CourseURL">
    	<#ERROR name="ERRORCourseURL">
    	<b>Course URL</b>
    	<input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#COURSE field="URL">"/><br />
    </label>
     
    <label for="CourseDescription">
    	<#ERROR name="ERRORCourseDescription">
    	<b>Course Description</b>
    	<textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5"><#COURSE field="Description"/></textarea><br />
    </label>
     
    <label for="CoursePassword">
    	<#ERROR name="ERRORCoursePassword">
    	<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 field="CoursePassword">"/><br />
    </label>
     
    <label for='Pickup Location'>
    	<#OPTION name="PickupLocation" selectedValue="<COURSE field="DefaultPickupSite" />" headerText="<b><span class='<#VALIDATION name=ERRORPickupLocation>'>Default Pickup Location for Physical Items</span></b>"><br />
    </label>
     
    <label for="CloneItemTags">
    	<#ERROR name="ERRORCloneItemTags">
    	<b>Clone Item Tags</b>
    	<input type="checkbox" id="CloneItemTags" name="CloneItemTags" class="f-checkbox" /><br />
    </label>

    with this:

    <!--
    <label for="ExternalCourseId"><#ERROR name="ERRORExternalCourseId">
    	<strong>
    		<span class="<#Validation name="ERRORExternalCourseId">">External Course Id</span>
    	</strong>
    	<input id="ExternalCourseId" name="ExternalCourseId" type="text" size="20" class="f-name" value="<#PARAM name="ExternalCourseID"/>"><br />
    </label>
    -->
     
    <label for="CourseName"><#ERROR name="ERRORCourseName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORCourseName">">Course Name</span>
    	</strong>
    	<input type="text" class="f-name" id="CourseName" name="CourseName" value="<#PARAM name=CourseName>" size="40" /><br />
    </label>
     
    <label for="CourseNumber"><#ERROR name="ERRORCourseNumber">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORCourseNumber">">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 name="ERRORCourseCode">
    	<strong>
    		<span class="<#Validation name="ERRORCourseCode">">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 name="ERRORCourseInstructor">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORCourseInstructor">">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 name="ERRORDepartment">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORDepartment">">Department</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=department>" Size="1"><br/>
    </label>
     
    <label for="Semester"><#ERROR name="ERRORCourseSemester">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORCourseSemester">">Course Semester</span><br/>
    		<span class="note">Choose the semester when you will be teaching this course again</span>
    	</strong>
    	<#OPTION name="Semester" class="f-name" onChange="GetSemesterStartStop(document.getElementById('Semester').value);"/><br/>
    </label>
     
    <label for="CourseURL"><#ERROR name="ERRORCourseURL">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseURL">">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 name="ERRORCourseDescription">
    	<strong>
    		<span class="<#VALIDATION name="ERRORDepartment">">Course Description</span>
    	</strong>
    	<input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name="CourseDescription"/>"/><br />
    </label>
     
    <label for="CoursePassword"><#ERROR name="ERRORCoursePassword">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCoursePassword">">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 name="ERRORPickupLocation">
    	<#OPTION name="PickupLocation" selectedValue="<COURSE field="DefaultPickupSite" />" headerText="<strong><span class='<#VALIDATION name=ERRORPickupLocation>'>Default Pickup Location for Physical Items</span></strong>"><br />
    </label>
     
    <label for="CloneItemTags"><#ERROR name="ERRORCloneItemTags">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCloneItemTags">">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 name="InstructorUsernames" useJavascriptNames="True" headerText="<label for='CourseInstructor'><#ERROR name='ERRORInstructorUsername'><b>Instructor&rsquo;s Username</b>" class="f-name" ooterText="<br /></label>"/>

    with this:

    <#OPTION name="InstructorUsernames" useJavascriptNames="True" headerText="<label for='CourseInstructor'><#ERROR name='ERRORInstructorUsername'><strong>Instructor&rsquo;s Username</strong>" class="f-name" footerText="<br /></label>"/>

     


     Replace this:

    <label for="SharedListName">
    	<#ERROR name="ERRORSharedListName">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORSharedListName">">Shared List Name</span></b>
    	<input id="SharedListName" name="SharedListName" type="text" size="40" class="f-name" value="<#SHAREDLIST field="ListName">"><br />
    </label>

    with this:

    <label for="SharedListName"><#ERROR name="ERRORSharedListName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORSharedListName">">Shared List Name</span>
    	</strong>
    	<input id="SharedListName" name="SharedListName" type="text" size="40" class="f-name" value="<#SHAREDLIST field="ListName">"><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 name="InstructorUsernames" useJavascriptNames="True" headerText="<label for='CourseInstructor'><#ERROR name='ERRORInstructorUsername'><b>Instructor&rsquo;s Username</b>" class="f-name" footerText="<br /></label>"/>

    with this:

    <#OPTION name="InstructorUsernames" useJavascriptNames="True" headerText="<label for='CourseInstructor'><#ERROR name='ERRORInstructorUsername'><strong>Instructor&rsquo;s Username</strong>" class="f-name" footerText="<br /></label>"/>

     


     Replace this:

    <label for="SharedListName">
    	<#ERROR name="ERRORSharedListName">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORSharedListName">">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 name="ERRORSharedListName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORSharedListName">">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 name="ERRORUsername">"><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="Username"/>"><br />							
    </label>
     
    <label for="FirstName">
    	<span class="<#Validation name="ERRORFirstName">"><b><span class="req">*</span>First Name</b></span>
    	<input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM Name="FirstName"/>"><br />
    </label>
     
    <label for="Last Name">
    	<span class="<#Validation name="ERRORLastName">"><b><span class="req">*</span>Last Name</b></span>
    	<input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM Name="LastName"/>"><br />
    </label>
     
    <label for="LibraryID">
    	<span class="<#Validation name="ERRORLibraryID">"><b><span class="req">*</span>Library ID</b></span>
    	<input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM Name="LibraryID"/>"><br />
    </label>
     
    <label for="EMailAddress">
    	<span class="<#Validation name="ERROREMailAddress">"><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="EmailAddress"/>"><br />
    </label>
     
    <label for="Phone1">
    	<span class="<#Validation name="ERRORPhone1">"><b><span class="req">*</span>Phone Number</b></span>
    	<input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM Name="Phone1"/>"><br />
    </label>
     
    <label for="Address1">
    	<span class="<#Validation name="ERRORAddress1">"><b><span class="req">*</span>Address</b></span>
    	<input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM 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="Address2"/>">
    </label>
     
    <label for="City">
    	<span class="<#Validation name="ERRORCity">"><b><span class="req">*</span>City</b></span>
    	<input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM Name="City"/>"><br />
    </label>
     
    <label for="State">
    	<span class="<#Validation name="ERRORState">"><b><span class="req">*</span>State</b></span>
    	<#OPTION name="Custom" GroupName="State" SelectedValue="<#PARAM name=State>" Size="1"><br/>
    </label>
     
    <label for="Zip">
    	<span class="<#Validation name="ERRORZip">"><b><span class="req">*</span>Zip Code</b></span>
    	<input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM Name="Zip"/>"><br />
    </label>
     
    <label for="StatusGroup">
    	<span class="<#Validation name="ERRORStatus">"><b><span class="req">*</span>Status</b></span>
    	<#OPTION name="Custom" GroupName="StatusGroup" SelectedValue="<#PARAM name=StatusGroup>" Size="1"><br/>
    </label>
     
    <label for="Department">
    	<span class="<#Validation name="ERRORDepartment">"><b><span class="req">*</span>Department</b></span>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=Department>" Size="1"><br/>
    </label>
     
    <label for="Password1">
    	<span class="<#Validation name="ERRORPassword1">"><b><span class="req">*</span>Password</b></span>
    	<input id="Password1" name="Password1" type="password" size="40" class="f-name" value="<#PARAM Name="Password1"/>"><br />
    </label>
     
    <label for="Password2">
    	<span class="<#Validation name="ERRORPassword2">"><b><span class="req">*</span>Confirm Password</b></span>
    	<input id="Password2" name="Password2" type="password" size="40" class="f-name" value="<#PARAM 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="PasswordHint"/>"><br />
    </label>
     
    <label for="CourseEmailDefault">
    	<b><span class="<#Validation name="ERRORCourseEmailDefault">"><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 Name="ERRORUsername">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORUsername">">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="Username"/>"><br />
    </label>
     
    <label for="FirstName"><#ERROR Name="ERRORFirstName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORFirstName">">First Name</span>
    	</strong>
    	<input id="FirstName" name="FirstName" type="text" size="40" class="f-name" value="<#PARAM Name="FirstName"/>"><br />
    </label>
     
    <label for="LastName"><#ERROR Name="ERRORLastName">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORLastName">">Last Name</span>
    	</strong>
    	<input id="LastName" name="LastName" type="text" size="40" class="f-name" value="<#PARAM Name="LastName"/>"><br />
    </label>
     
    <label for="LibraryID"><#ERROR Name="ERRORLibraryID">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORLibraryID">">Library ID</span>
    	</strong>
    	<input id="LibraryID" name="LibraryID" type="text" size="40" class="f-name" value="<#PARAM Name="LibraryID"/>"><br />
    </label>
     
    <label for="EmailAddress"><#ERROR Name="ERROREmailAddress">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERROREmailAddress">">Email Address</span>
    	</strong>
    	<input id="EmailAddress" name="EmailAddress" type="text" size="40" class="f-name" value="<#PARAM Name="EmailAddress"/>"><br />
    </label>
     
    <label for="Phone1"><#ERROR Name="ERRORPhone1">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORPhone1">">Phone Number</span>
    	</strong>
    	<input id="Phone1" name="Phone1" type="text" size="40" class="f-name" value="<#PARAM Name="Phone1"/>"><br />
    </label>
     
    <label for="Address1"><#ERROR Name="ERRORAddress1">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORAddress1">">Address</span>
    	</strong>
    	<input id="Address1" name="Address1" type="text" size="40" class="f-name" value="<#PARAM Name="Address1"/>"><br />
    </label>
     
    <label for="Address2"><#ERROR Name="ERRORAddress2">
    	<strong>
    		<span class="<#Validation name="ERRORAddress2">">Address 2</span>
    	</strong>
    	<input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name="Address2"/>"><br />
    </label>
     
    <label for="City"><#ERROR Name="ERRORCity">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORCity">">City</span>
    	</strong>
    	<input id="City" name="City" type="text" size="20" class="f-name" value="<#PARAM Name="City"/>"><br />
    </label>
     
    <label for="State"><#ERROR Name="ERRORState">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORState">">State</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="State" SelectedValue="<#PARAM name=State>" Size="1"><br/>
    </label>
     
    <label for="Zip"><#ERROR Name="ERRORZip">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORZip">">Zip Code</span>
    	</strong>
    	<input id="Zip" name="Zip" type="text" size="40" class="f-name" value="<#PARAM Name="Zip"/>"><br />
    </label>
     
    <label for="StatusGroup"><#ERROR Name="ERRORStatus">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORStatus">">Status</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="StatusGroup" SelectedValue="<#PARAM name=StatusGroup>" Size="1"><br/>
    </label>
     
    <label for="Department"><#ERROR Name="ERRORDepartment">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORDepartment">">Department</span>
    	</strong>
    	<#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=Department>" Size="1"><br/>
    </label>
     
    <label for="Password1">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORPassword1">">Password</span>
    	</strong>
    	<input id="Password1" name="Password1" type="password" size="40" class="f-name" value="<#PARAM Name="Password1"/>"><br />
    	<#ERROR Name="ERRORPassword1">
    </label>
     
    <label for="Password2">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name="ERRORPassword2">">Confirm Password</span>
    	</strong>
    	<input id="Password2" name="Password2" type="password" size="40" class="f-name" value="<#PARAM Name="Password2"/>"><br />
    	<#ERROR Name="ERRORPassword2">
    </label>
     
    <label for="PasswordHint"><#ERROR name="ERRORPasswordHint">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#Validation name='ERRORPasswordHint'>">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 name="ERRORCourseEmailDefault">" 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 field="Username"/></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 field="Username"/></title>

    with this:

    <title>Ares - Courses</title>

     

  • IApplySharedList.html

     Replace this:

    <title>Ares - <#USER field="Username"/></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 field="Username"/></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 field="Username"/></title>

    with this:

    <title>Ares - Item Deletion</title>

     

  • IItemInfo.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Item <#ITEM field="ItemID"/></title>

     

  • IItemUsage.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Reserve Item Usage</title>

     

  • UCourseDelete.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Course Deletion</title>

     

  • UCourseInfo.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Course <#COURSE field="CourseNumber"/></title>

     

  • UCourseMessageBoard.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Course <#COURSE field="CourseNumber"/> Message Board</title>

     

  • UCourseMessageBoardNewReply.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Course <#COURSE field="CourseNumber"/> Message Board</title>

     

  • UCourseMessageBoardNewThread.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Course <#COURSE field="CourseNumber"/> Message Board</title>

     

  • UCourseMessageBoardThread.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Course <#COURSE field="CourseNumber"/> Message Board</title>

     

  • UCoursePassword.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Create Course</title>

     

  • UCourseResults.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Course Search Results</title>

     

  • UCourseTags.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Course <#COURSE field="CourseNumber"/> Tags</title>

     

  • UHome.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Main Menu</title>

     

  • UHotList.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - <#CUSTOMIZATION name='HotListName'></title>

     

  • UItemInfo.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Item <#ITEM field="ItemID"/></title>

     

  • USearch.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Search</title>

     

  • USearchCourse.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Course Search</title>

     

  • USearchResults.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Search Results</title>

     

  • ICourseImportItems.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Import Course Items</title>

     

  • ICourseImportItemsToSharedList.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Import Shared List Items</title>

     

  • ICourseMessageBoard.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - <#COURSE field="CourseNumber"/> Message Board</title>

     

  • ICourseMessageBoardNewReply.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - <#COURSE field="CourseNumber"/> Message Board</title>

     

  • ICourseMessageBoardNewThread.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - <#COURSE field="CourseNumber"/> Message Board</title>

     

  • ICourseMessageBoardThread.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - <#COURSE field="CourseNumber"/> Message Board</title>

     

  • ICourseProxyUsers.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Course <#COURSE field="CourseNumber"/> Proxy Users</title>

     

  • ICourseTags.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Course <#COURSE field="CourseNumber"/> Tags</title>

     

  • ICourseUsage.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Course <#COURSE field="CourseNumber"/> Reserve Item Usage</title>

     

  • IHome.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Main Menu</title>

     

  • IInstructorSharedLists.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Shared Lists</title>

     

  • ICourseInfo.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Course <#COURSE field="CourseNumber"/></title>

     

  • ICourseEdit.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Edit Course <#COURSE field="CourseNumber"/></title>

     

  • ICourseCrossList.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Cross Listings for Course <#COURSE field="CourseNumber"/></title>

     

  • ICourseCreate.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Create Course</title>

     

  • ICourseClone.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Clone Course</title>

     

  • ICourseAuthUsers.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Authorized Users for Course <#COURSE field="CourseNumber"/></title>

     

  • IUploadForm.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Upload Form</title>

     

  • IUploadSharedListItemForm.html

    Replace this:

    <title>Ares - <#USER field="Username"/></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 field="Username"/></title>

    with this:

    <title>Ares - User Registration</title>

     

  • ChangePassword.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Change User Password</title>
  • ChangeUserInformation.html

    Replace this:

    <title>Ares - <#USER field="Username"/></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 field="Username"/></title>

    with this:

    <title>Ares - Previous Courses</title>

     

  • IProxyUsers.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Proxy Users</title>

     

  • ISearchResults.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Item Search Results</title>

     

  • ISharedListCreate.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Create Shared List</title>

     

  • ISharedListEdit.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Edit Shared List <#SHAREDLIST field="ListName"></title>

     

  • ISharedListInfo.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Shared List <#SHAREDLIST field="ListName"></title>

     

  • ISharedListItemInfo.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Shared List Item <#SHAREDLISTITEM field="ListItemID"></title>

     

  • IRFArticle.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Reserve Article</title>

     

  • IRFAudio.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Reserve Audio</title>

     

  • IRFBook.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Reserve Book</title>

     

  • IRFBookChapter.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Reserve Book Chapter</title>

     

  • IRFCreate.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Create Reserve Item</title>

     

  • IRFEditArticle.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Edit Item <#ITEM field="ItemID"/></title>

     

  • IRFEditAudio.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Edit Item <#ITEM field="ItemID"/></title>

     

  • IRFEditBook.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Edit Item <#ITEM field="ItemID"/></title>

     

  • IRFEditBookChapter.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Edit Item <#ITEM field="ItemID"/></title>

     

  • IRFEditCreate.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Edit Item <#ITEM field="ItemID"/></title>

     

  • IRFEditInstructorUpload.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Item Upload</title>

     

  • IRFEditVideo.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Edit Item <#ITEM field="ItemID"/></title>

     

  • IRFInstructorUpload.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Item Upload</title>

     

  • IRFMenu.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Reserve Item</title>

     

  • IRFOpenURLArticle.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Reserve Article</title>

     

  • IRFOpenURLBook.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Reserve Book</title>

     

  • IRFVideo.html

    replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Reserve Video</title>

     

  • ISLRFArticle.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Create Shared List Item - Article</title>

     

  • ISLRFAudio.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Create Shared List Item - Audio</title>

     

  • ISLRFBook.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Create Shared List Item - Book</title>

     

  • ISLRFBookChapter.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Create Shared List Item - Book Chapter</title>

     

  • ISLRFCreate.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Create Shared List Item</title>

     

  • ISLRFEditArticle.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Edit Shared List Item <#SHAREDLISTITEM field="ListItemID"/></title>

     

  • ISLRFEditAudio.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Edit Shared List Item <#SHAREDLISTITEM field="ListItemID"/></title>

     

  • ISLRFEditBook.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Edit Shared List Item <#SHAREDLISTITEM field="ListItemID"/></title>

     

  • ISLRFEditBookChapter.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Edit Shared List Item <#SHAREDLISTITEM field="ListItemID"/></title>

     

  • ISLRFEditCreate.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Edit Shared List Item <#SHAREDLISTITEM field="ListItemID"/></title>

     

  • ISLRFEditInstructorUpload.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Edit Shared List Item <#SHAREDLISTITEM field="ListItemID"/></title>

     

  • ISLRFEditVideo.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Edit Shared List Item <#SHAREDLISTITEM field="ListItemID"/></title>

     

  • ISLRFInstructorUpload.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Upload Shared List Item</title>

     

  • ISLRFMenu.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Add Shared List Item</title>

     

  • ISLRFOpenURLArticle.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Create Shared List Item</title>

     

  • ISLRFOpenURLBook.html

    Replace this:

    <title>Ares - <#USER field="Username"/></title>

    with this:

    <title>Ares - Create Shared List Item</title>

     

  • ISLRFVideo.html

    Replace this:

    <title>Ares - <#USER field="Username"/></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 field="CourseNumber"/></h2>

    with this:

    <h1>Message Board for <#COURSE field="CourseNumber"/></h1>

     

  • UCourseMessageBoardNewReply.html

     Replace this:

    <h3>Reply to <#BOARD field="Title"/></h3>	

    with this:

    <h1 tabindex="0">Reply to <#BOARD field="Title"/></h1> 

     

  • UCourseMessageBoardNewThread.html

     Replace this:

    <h3>New topic for <#COURSE field="CourseNumber"/></h3>				

    with this:

    <h1 tabindex="0"New topic for <#COURSE field="CourseNumber"/></h1>

     

  • UCourseMessageBoardThread.html

     Replace this:

    <h2>Message Board for <#COURSE field="CourseNumber"/></h2>

    with this:

    <h1>Message Board for <#COURSE field="CourseNumber"/></h1> 

     

  • UHome.html

     Replace this:

    <h3>Main Menu</h3>

    with this:

    <h1>Main Menu</h1>

     


     Replace this:

    <#TAGCLOUD name="Course" MaxFontSizes="5" IncludeTagCount="Yes" TagFence="No" TagType="Personal" headerText="<h4>My Tags</h4>" footerText="<br />" /><br/>

    with this:

    <#TAGCLOUD name="Course" MaxFontSizes="5" IncludeTagCount="Yes" TagFence="No" TagType="Personal" headerText="<h2>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 field="CourseNumber"/></h2>

    with this:

    <h1>Message Board for <#COURSE field="CourseNumber"/></h1>

     

  • ICourseMessageBoardNewReply.html

     Replace this:

    <h3>Reply to <#BOARD field="Title"/></h3>

    with this:

    <h1 tabindex="0">Reply to <#BOARD field="Title"/></h1>

     

  • ICourseMessageBoardNewThread.html

     Replace this:

    <h3>New topic for <#COURSE field="CourseNumber"/></h3>

    with this:

    <h1 tabindex="0">New topic for <#COURSE field="CourseNumber"/></h1>

     

  • ICourseMessageBoardThread.html

     Replace this:

    <h2>Message Board for <#COURSE field="CourseNumber"/></h2>

    with this:

    <h1>Message Board for <#COURSE field="CourseNumber"/></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 field="Name"></h3>

    with this:

    <h1>Reserve Usage for <#COURSE field="Name"></h1>

     

  • IHome.html

     Replace this:

    <h3>Main Menu</h3>

    with this:

    <h1>Main Menu</h1>

     

  • ICourseEdit.html

     Replace this:

    <h3>Edit Course: <#COURSE field="Name"></h3>

    with this:

    <h1 tabindex="0">Edit Course: <#COURSE field="Name"></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 field="CourseNumber"/></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 field="Name"/></h3>

    with this:

    <h2 tabindex="0">Clone course: <#COURSE field="Name"/></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 field="ListName"></h3>

    with this:

    <h1 tabindex="0">Edit Shared List: <#SHAREDLIST field="ListName"></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 field="ItemID"/></h1>

    under this:

    <div id="content" role="main" tabindex="-1">

     

  • UCourseInfo.html

     Add this:

    <h1 class="offscreen">Course <#COURSE field="CourseNumber"/></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 field="CourseNumber"/> Tags</h1>

    under this:

    <div id="content" role="main" tabindex="-1">

     

  • UHotList.html

     Add this:

    <h1 class="offscreen"><#CUSTOMIZATION name='HotListName'></h1>

    under this:

    <div id="content" role="main" tabindex="-1">

     

  • UItemInfo.html

     Add this:

    <h1 class="offscreen"><#CUSTOMIZATION name='HotListName'></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 field="CourseNumber"/> 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 field="CourseNumber"/></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 field="CourseNumber"/></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 field="ItemID"/></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 field="ListName"></h1>

    after this:

    <div id="content" role="main" tabindex="-1">

     

  • ISharedListItemInfo.html

     Add this:

    <h1 class="offscreen">Shared List Item <#SHAREDLISTITEM field="ListItemID"></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="65" value="CourseID" valuetype="Lookup">">Chat</a></li>

     

  • include_studentcoursemenu.html

     Delete this line:

    <li><a href="<#ACTION action="10" form="65" value="CourseID" valuetype="Lookup">">Chat</a></li>

     

You can also remove the ICourseChat.htmlUCourseChat.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 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 name="ERRORItemContent">
    	<textarea id="ItemText" name="ItemText" rows="15" cols="80"><#ITEM field="Text"></textarea><br />
    </label>

    with this:

    <label for="ItemText"><#ERROR name="ERRORItemContent">
    	<strong>
    		<span class="<#VALIDATION name="ItemText">" 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 name="ERRORItemContent">
    	<textarea id="ItemText" name="ItemText" rows="15" cols="80"><#ITEM field="Text"></textarea><br />
    </label>

    with this:

    <label for="ItemText">
    	<#ERROR name="ERRORItemContent">
    	<strong>
    		<span class="<#VALIDATION name="ItemText">" 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 name="ERRORItemContent">
    	<textarea id="ItemText" name="ItemText" rows="15" cols="80"><#SHAREDLISTITEM field="Text"></textarea><br />
    </label>

    with this:

    <label for="ItemText">
    	<#ERROR name="ERRORItemContent">
    	<strong>
    		<span class="<#VALIDATION name="ItemText">" 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 name="ERRORItemContent">
    	<textarea id="ItemText" name="ItemText" rows="15" cols="80"><#SHAREDLISTITEM field="Text"></textarea><br />
    </label>

    with this:

    <label for="ItemText"><#ERROR name="ERRORItemContent">
    	<strong>
    		<span class="<#VALIDATION name="ItemText">" 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 name="ERRORMessage">
    	<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 name="ERRORMessage">
    	<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 name="ERRORMessage">
    	<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 name="ERRORMessage">
    	<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 name="ERRORMessage">
    	<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 name="ERRORMessage">
    	<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 name="ERRORMessage">
    	<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 name="ERRORMessage">
    	<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 &copy; 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>&copy; 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>&copy; Copyright 2004 - 2008 <a href="http://www.atlas-sys.com/">Atlas Systems, Inc.
    </a> All Rights Reserved.</p>

    with this:

    <p>Copyright &copy; 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 name="Course" class="instructor-table" AllowRowClick="Yes" headerText="Courses" LinkColumn="CourseNumber" AllowJavascriptHover="True" Session="ItemAddition" Role="Instructor" column="CourseNumber:Course" column="CourseCode:Section Number" column="Name:Name" column="ReserveItems:Reserve Items" NoDataAction="ShowMessage" NoDataMessage="No courses found.">

    with this:

    <#TABLE name="Course" class="instructor-table filterTable" headerText="Courses" LinkColumn="CourseNumber" Session="ItemAddition" Role="Instructor" column="CourseNumber:Course" column="CourseCode:Course Code" column="Name:Name" column="ReserveItems:Reserve Items" NoDataAction="ShowMessage" NoDataMessage="No courses found.">

     

  • IPreviousCourseList.html

     Replace this:

    <#TABLE name="Course" class="instructor-table" AllowRowClick="Yes" headerText="Previous Courses" LinkColumn="CourseNumber" AllowJavascriptHover="True" Session="Previous" Role="Instructor" column="Semester:Semester" column="CourseNumber:Course" column="CourseCode:Section Number" column="Name:Name" NoDataAction="ShowMessage" NoDataMessage="No courses found." orderby="C.StopDate DESC,C.CourseNumber ASC">

    with this:

    <#TABLE name="Course" class="instructor-table filterTable" headerText="Previous Courses" LinkColumn="CourseNumber" Session="Previous" Role="Instructor" column="Semester:Semester" column="CourseNumber:Course" column="CourseCode:Course Code" column="Name:Name" NoDataAction="ShowMessage" NoDataMessage="No courses found." orderby="C.StopDate DESC,C.CourseNumber ASC">

     

  • ICourseClone.html

     Replace this:

    <label for="CourseCode">
    	<#ERROR name="ERRORCourseCode">
    	<b>Section Number/Course Number</b>
    	<input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#COURSE field="CourseCode">"><br />
    </label>

    with this:

    <label for="CourseCode"><#ERROR name="ERRORCourseCode">
    	<strong>
    		<span class="<#Validation name="ERRORCourseCode">">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 name="ERRORCourseCode">
    	<b><span class="<#VALIDATION name="ERRORCourseCode">">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 name="ERRORCourseCode">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseCode">">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 name="ERRORCourseCode">
    	<b><span class="<#VALIDATION name="ERRORCourseCode">">Section Number/Course Number</span></b>
    	<input id="CourseCode" name="CourseCode" type="text" size="40" class="f-name" value="<#COURSE field="CourseCode">"><br />
    </label>	

    from this:

    <label for="CourseCode"><#ERROR name="ERRORCourseCode">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseCode">">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 name="ERRORCourseCode">
    	<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 name="ERRORCourseCode">
    	<strong>
    		<span class="<#VALIDATION Name="ERRORCourseCode">">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 name="Course" class="instructor-table" Type="Import" AllowRowClick="Yes" headerText="Current and Previous Courses" LimitRecentMonths="2" AllowJavascriptHover="True" Session="PreviousOrCurrent" Role="Instructor"  column="Semester:Semester" column="CourseNumber:Course" column="CourseCode:Section Number" column="Name:Name" column="ReserveItems:Reserve Items" NoDataAction="ShowMessage" NoDataMessage="No courses found." orderby="C.StopDate DESC,C.CourseNumber ASC">

    with this:

    <#TABLE name="Course" class="instructor-table filterTable" Type="Import" headerText="Current and Previous Courses" LimitRecentMonths="2" Session="PreviousOrCurrent" Role="Instructor"  column="Semester:Semester" column="CourseNumber:Course" column="CourseCode:Course Code" column="Name:Name" column="ReserveItems:Reserve Items" NoDataAction="ShowMessage" NoDataMessage="No courses found." orderby="C.StopDate DESC,C.CourseNumber ASC">

     

  • ISLRFMenu.html

     Replace this:

    <#TABLE name="Course" class="instructor-table" Type="ImportToSharedList" AllowRowClick="Yes" headerText="Current and Previous Courses" LimitRecentMonths="2" AllowJavascriptHover="True" Session="PreviousOrCurrent" Role="Instructor"  column="Semester:Semester" column="CourseNumber:Course" column="CourseCode:Section Number" column="Name:Name" column="ReserveItems:Reserve Items" NoDataAction="ShowMessage" NoDataMessage="No courses found." orderby="C.StopDate DESC,C.CourseNumber ASC">

    with this:

    <#TABLE name="Course" class="instructor-table filterTable" Type="ImportToSharedList" headerText="Current and Previous Courses" LimitRecentMonths="2" Session="PreviousOrCurrent" Role="Instructor"  column="Semester:Semester" column="CourseNumber:Course" column="CourseCode:Course Code" column="Name:Name" column="ReserveItems:Reserve Items" NoDataAction="ShowMessage" NoDataMessage="No courses found." orderby="C.StopDate DESC,C.CourseNumber ASC">

     

  • ISharedListInfo.html

     Replace this:

    <#TABLE name="Course" type='SharedListCourses' class="instructor-table" AllowRowClick="Yes" headerText="Courses" LinkColumn="CourseNumber" AllowJavascriptHover="True" Session="ItemAddition" Role="Instructor" column="CourseNumber:Course" column="CourseCode:Section Number" column="Name:Name" column="ReserveItems:Reserve Items" NoDataAction="ShowMessage" NoDataMessage="No courses found.">

    with this:

    <#TABLE name="Course" type='SharedListCourses' class="instructor-table filterTable" headerText="Courses" LinkColumn="CourseNumber" Session="ItemAddition" Role="Instructor" column="CourseNumber:Course" column="CourseCode:Course Code" column="Name:Name" column="ReserveItems:Reserve Items" NoDataAction="ShowMessage" NoDataMessage="No courses found.">

     

  • UCourseResults.html

     Replace this:

    <#TABLE name="Course" type="AddCourse"  addCourseText="<img src='images/add_16.gif'/> 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 name="Course" type="AddCourse" class="student-table-nohover filterTable" addCourseText="<img src='images/add_16.gif'/> 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 action=10 form=63>'>Search Courses</a>" footerText="<a href='<#Action action=10 form=63>'>Search Again?</a>">

     

  • UHome.html

     Replace this:

    <#TABLE name="Course" id="SearchResults" class="student-table" AllowRowClick="Yes" headerText="My Courses" LinkColumn="CourseNumber" AllowJavascriptHover="Yes" Session="Current" Role="Student" column="CourseNumber:Course" column="CourseCode:Section Number" column="Name:Name" column="ItemCount:Reserve Items" NoDataAction="ShowMessage" NoDataMessage="You currently are not registered for any courses in the Ares system.<br/>To add courses to your account, <a href='<#Action action=10 form=63>'>Search Courses</a>">

    of this:

    <#TABLE name="Course" id="SearchResults" class="student-table filterTable" headerText="My Courses" LinkColumn="CourseNumber" Session="Current" Role="Student" column="CourseNumber:Course" column="CourseCode:Course Code" column="Name:Name" column="ItemCount:Reserve Items" NoDataAction="ShowMessage" NoDataMessage="You currently are not registered for any courses in the Ares system.<br/>To add courses to your account, <a href='<#Action action=10 form=63>'>Search Courses</a>">

     

  • IHome.html

     Replace this:

    <#TABLE name="Course" class="instructor-table" AllowRowClick="Yes" headerText="Current Courses" LinkColumn="CourseNumber" AllowJavascriptHover="True" Session="Current" Role="Instructor" column="CourseNumber:Course" column="CourseCode:Section Number" column="Name:Name" column="ReserveItems:Reserve Items" footerText="<a href='<#Action action=10 form=2 value=IActiveCourseList>'>Also view upcoming courses</a>" NoDataAction="ShowMessage" NoDataMessage="No courses found.">

    with this:

    <#TABLE name="Course" class="instructor-table filterTable" headerText="Current Courses" LinkColumn="CourseNumber" Session="Current" Role="Instructor" column="CourseNumber:Course" column="CourseCode:Course Code" column="Name:Name" column="ReserveItems:Reserve Items" footerText="<a href='<#Action action=10 form=2 value=IActiveCourseList>'>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 Name="ERRORTitle">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORTitle">">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="title"/></textarea><br />
    </label>

    with this:

    <label for="Title"><#ERROR Name="ERRORTitle">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORTitle">">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="title"/>"/><br />
    </label>

     


     Replace this:

    <label for="CitedIn">
    	<#ERROR name="ERRORCitedIn">
    	<b><span class="<#VALIDATION name="ERRORCitedIn">">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="citedin"/></textarea><br />
    </label>

    with this:

    <label for="CitedIn"><#ERROR name="ERRORCitedIn">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCitedIn">">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>

     

  • IRFBook.html

     Replace this:

    <label for="Title">
    	<#ERROR Name="ERRORTitle">
    	<b><span class="req">*</span>
    	<span class="<#VALIDATION name="ERRORTitle">">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="title"/></textarea><br />
    </label>

    with this:

    <label for="Title"><#ERROR Name="ERRORTitle">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORTitle">">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="title"/>"/><br />
    </label>

     


     Replace this:

    <label for="CitedIn">
    	<#ERROR name="ERRORCitedIn">
    	<b><span class="<#VALIDATION name="ERRORCitedIn">">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="citedin"/></textarea><br />
    </label>

    with this:

    <label for="CitedIn"><#ERROR name="ERRORCitedIn">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCitedIn">">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>

     

  • IRFEditAudio.html

     Replace this:

    <label for="Title">
    	<#ERROR Name="ERRORTitle">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORTitle">">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 field="title"/></textarea><br />
    </label>

    with this:

    <label for="Title">
    	<#ERROR Name="ERRORTitle">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORTitle">">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="Title"/>"/><br />
    </label>

     


     Replace this:

    <label for="CitedIn">
    	<#ERROR name="ERRORCitedIn">
    	<b><span class="<#VALIDATION name="ERRORCitedIn">">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 field="citedin"/></textarea><br />
    </label>

    with this:

    <label for="CitedIn">
    	<#ERROR name="ERRORCitedIn">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCitedIn">">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>

     

  • IRFEditBook.html

     Replace this:

    <label for="Title">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORTitle">">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 Field="Title"/></textarea><br />
    </label>

    with this:

    <label for="Title"><#ERROR Name="ERRORTitle">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORTitle">">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="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 field="CitedIn"></textarea><br />
    </label>

    with this:

    <label for="CitedIn"><#ERROR name="ERRORCitedIn">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCitedIn">">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>

     

  • IRFEditBookChapter.html

     Replace this:

    <label for="ArticleTitle">
    	<#ERROR name="ERRORArticleTitle">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORArticleTitle">">Chapter Title</span></b>
    	<input id="ArticleTitle" name="ArticleTitle" type="text" size="40" class="f-name" value="<#ITEM field="ArticleTitle">"><br />
    </label>

    with this:

    <label for="Title">
    	<#ERROR name="ERRORTitle">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORTitle">">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 name="ERRORCitedIn">
    	<b><span class="<#VALIDATION name="ERRORCitedIn">">Where did you find this citation?</span></b>
    	<input id="CitedIn" name="CitedIn" type="text" size="40" class="f-name" value="<#ITEM field="CitedIn">"><br />
    </label>

    with this:

    <label for="CitedIn"><#ERROR name="ERRORCitedIn">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCitedIn">">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>

     

  • IRFEditVideo.html

     Replace this:

    <label for="Title">
    	<#ERROR Name="ERRORTitle">
    	<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 field="title"/></textarea><br />
    </label>

    with this:

    <label for="Title"><#ERROR Name="ERRORTitle">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORTitle">">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="Title"/>"/><br />
    </label>

     


     Replace this:

    <label for="CitedIn">
    	<#ERROR name="ERRORCitedIn">
    	<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 field="citedin"/></textarea><br />
    </label>

    with this:

    <label for="CitedIn"><#ERROR name="ERRORCitedIn">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCitedIn">">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>

     

  • IRFOpenURLBook.html

     Replace this:

    <label for="Title">
    	<#ERROR Name="ERRORTitle">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORTitle>">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="Title"/></textarea><br />
    </label>

    with this:

    <label for="Title"><#ERROR Name="ERRORTitle">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORTitle">">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="Title"/>"/><br />
    </label>

     


     Replace this:

    <label for="CitedIn">
    	<#ERROR name="ERRORCitedIn">
    	<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="CitedIn"/></textarea><br />
    </label>

    with this:

    <label for="CitedIn"><#ERROR name="ERRORCitedIn">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCitedIn">">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>

     

  • IRFVideo.html

     Replace this:

    <label for="Title">
    	<#ERROR Name="ERRORTitle">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORTitle">">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="title"/></textarea><br />
    </label>

    with this:

    <label for="Title">
    	<#ERROR Name="ERRORTitle">
    	<strong>
    		<span class="req">*</span><span class="<#VALIDATION name="ERRORTitle">">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="title"/>"/><br />
    </label>

     


     Replace this:

    <label for="CitedIn">
    	<#ERROR name="ERRORCitedIn">
    	<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="citedin"/></textarea><br />
    </label>

    with this:

    <label for="CitedIn"><#ERROR name="ERRORCitedIn">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCitedIn">">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>

     

  • ISLRFAudio.html

     Replace this:

    <label for="Title">
    	<#ERROR Name="ERRORTitle">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORTitle">">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="title"/></textarea><br />
    </label>

    with this:

    <label for="Title"><#ERROR Name="ERRORTitle">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORTitle">">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="Title"/>"/><br />
    </label>

     


     Replace this:

    <label for="CitedIn">
    	<#ERROR name="ERRORCitedIn">
    	<b><span class="<#VALIDATION name="ERRORCitedIn">">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="citedin"/></textarea><br />
    </label>

    with this:

    <label for="CitedIn"><#ERROR name="ERRORCitedIn">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCitedIn">">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>

     

  • ISLRFBook.html

     Replace this:

    <label for="Title">
    	<#ERROR Name="ERRORTitle">
    	<b><span class="req">*</span>
    	<span class="<#VALIDATION name="ERRORTitle">">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="title"/></textarea><br />
    </label>

    with this:

    <label for="Title"><#ERROR Name="ERRORTitle">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORTitle">">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="Title"/>"/><br />
    </label>

     


     Replace this:

    <label for="CitedIn">
    	<#ERROR name="ERRORCitedIn">
    	<b><span class="<#VALIDATION name="ERRORCitedIn">">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="citedin"/></textarea><br />
    </label>

    with this:

    <label for="CitedIn"><#ERROR name="ERRORCitedIn">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCitedIn">">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>

     

  • ISLRFEditAudio.html

     Replace this:

    <label for="Title">
    	<#ERROR Name="ERRORTitle">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORTitle">">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 field="title"/></textarea><br />
    </label>

    with this:

    <label for="Title"><#ERROR Name="ERRORTitle">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORTitle">">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="Title"/>"/><br />
    </label>

     


     Replace this:

    <label for="CitedIn">
    	<#ERROR name="ERRORCitedIn">
    	<b><span class="<#VALIDATION name="ERRORCitedIn">">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 field="citedin"/></textarea><br />
    </label>

    with this:

    <label for="CitedIn"><#ERROR name="ERRORCitedIn">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCitedIn">">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>

     

  • ISLRFEditBook.html

     Replace this:

    <label for="Title">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORTitle">">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 Field="Title"/></textarea><br />
    </label>

    with this:

    <label for="Title">
    	<#ERROR Name="ERRORTitle">
    	<strong>
    		<span class="req">*</span><span class="<#VALIDATION name="ERRORTitle">">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="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 field="CitedIn"></textarea><br />
    </label>

    with this:

    <label for="CitedIn">
    	<#ERROR name="ERRORCitedIn">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCitedIn">">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 Name="ERRORTitle">					         		
    	<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 field="title"/></textarea><br />
    </label>

    with this:

    <label for="Title"><#ERROR Name="ERRORTitle">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORTitle">">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="Title"/>"/><br />
    </label>

     


     Replace this:

    <label for="CitedIn">
    	<#ERROR name="ERRORCitedIn">
    	<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 field="citedin"/></textarea><br />
    </label>

    with this:

    <label for="CitedIn"><#ERROR name="ERRORCitedIn">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCitedIn">">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>

     

  • ISLRFInstructorUpload.html

     Replace this:

    <label for="Title">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORTitle">">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 Field="Title"/></textarea><br />
    </label>

    with this:

    <label for="Title"><#ERROR Name="ERRORTitle">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORTitle">">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 Name="ERRORTitle">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORTitle>">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="Title"/></textarea><br />
    </label>

    with this:

    <label for="Title"><#ERROR Name="ERRORTitle">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORTitle>">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="Title"/>"/><br />
    </label>

     


     Replace this:

    <label for="CitedIn">
    	<#ERROR name="ERRORCitedIn">
    	<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="CitedIn"/></textarea><br />
    </label>

    with this:

    <label for="CitedIn"><#ERROR name="ERRORCitedIn">
    	<strong>
    		<span class="<#VALIDATION name="ERRORESPNumber">">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>

     

  • ISLRFVideo.html

     Replace this:

    <label for="Title">
    	<#ERROR Name="ERRORTitle">
    	<b><span class="req">*</span><span class="<#VALIDATION name="ERRORTitle">">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="title"/></textarea><br />
    </label>

    with this:

    <label for="Title">
    	<#ERROR Name="ERRORTitle">
    	<strong>
    		<span class="req">*</span>
    		<span class="<#VALIDATION name="ERRORTitle">">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="Title"/>"/><br />
    </label>

     


     Replace this:

    <label for="CitedIn">
    	<#ERROR name="ERRORCitedIn">
    	<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="citedin"/></textarea><br />
    </label>

    with this:

    <label for="CitedIn"><#ERROR name="ERRORCitedIn">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCitedIn">">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>

     

  • ICourseClone.html

     Replace this:

    <label for="CourseDescription">
    	<#ERROR name="ERRORCourseDescription">
    	<b>Course Description</b>
    	<textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5"><#COURSE field="Description"/></textarea><br />
    </label>

    with this:

    <label for="CourseDescription"><#ERROR name="ERRORCourseDescription">
    	<strong>
    		<span class="<#VALIDATION name="ERRORDepartment">">Course Description</span>
    	</strong>
    	<input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name="CourseDescription"/>"/><br />
    </label>

     

  • ICourseCreate.html

     Replace this:

    <label for="CourseDescription">
    	<#ERROR name="ERRORCourseDescription">
    	<b><span class="<#VALIDATION name="ERRORCourseDescription">">Course Description</span></b>
    	<textarea name="CourseDescription" id="CourseDescription" cols="20" rows="5"><#PARAM name="CourseDescription"/></textarea><br />
    </label>

    with this:

    <label for="CourseDescription"><#ERROR name="ERRORCourseDescription">
    	<strong>
    		<span class="<#VALIDATION name="ERRORCourseDescription">">Course Description</span>
    	</strong>
    	<input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM 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 field="BuildURL" NewWindow="True" alt="View this item" linkText="View this item">
    	<#ITEM field="BuildDeleteURL" NewWindow="False" alt="Delete this item" linkText="Delete this item" headertext=" | ">
    </span>

    with this:

    <span class="note2">
    	<#ITEM field="BuildURL" alt="View this item" linkText="View this item" footertext=" <span aria-hidden='true'>|</span> ">
    	<#ITEM field="BuildDeleteURL" alt="Delete this item" linkText="Delete this item">
    </span>

     

  • include_vieweditdelete.html

     Replace this:

    <#ITEM field="BuildURL" NewWindow="True" alt="View this item" linkText="View this item" footerText=" | ">
    <#ITEM field="BuildEditURL" NewWindow="False" alt="Edit this item" linkText="Edit this item">
    <#ITEM field="BuildDeleteURL" NewWindow="False" alt="Delete this item" linkText="Delete this item" headertext=" | ">
    <#ITEM field="BuildRISExportURL" NewWindow="False" alt="Export Citation" linkText="Export Citation" headertext=" | ">

    with this:

    <#ITEM field="BuildURL" alt="View this item" linkText="View this item" footertext=" <span aria-hidden='true'>|</span> ">
    <#ITEM field="BuildEditURL" alt="Edit this item" linkText="Edit this item" footertext=" <span aria-hidden='true'>|</span> ">
    <#ITEM field="BuildDeleteURL" alt="Delete this item" linkText="Delete this item" footertext=" <span aria-hidden='true'>|</span> ">
    <#ITEM field="BuildRISExportURL" alt="Export Citation" linkText="Export Citation">

     

  • IItemDelete.html

     Replace this:

    <div class="row"><#ITEM field="BuildURL" newWindow="True" freeText="False" linkText="<img src='images/new-win-icon.gif' height='16' width='16'/> View this item"></div>						

    with this:

    <div class="row"><#ITEM field="BuildURL" freeText="False" linkText="<img src='images/new-win-icon.gif' height='16' width='16' alt='View item in new window' aria-hidden='true' /> View this item"></div>	

     

  • UCourseInfo.html

     Replace this:

    <select id="SortCourseItems" name="SortCourseItems" onchange="ResortItems('<#PARAM name="SessionID"/>', <#PARAM 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="SessionID"/>', <#PARAM name="Value"/>, this[this.selectedIndex].value);">
    	<option value="" selected="selected" disabled="disabled" >Sort By</option> 

     

  • UItemInfo.html

     Replace this:

    <div class="row"><#ITEM field="BuildURL" newWindow="True" freeText="False" linkText="<img src='images/new-win-icon.gif' height='16' width='16'/> View this item"></div>
    <div class="row"><#ITEM field="BuildRISExportURL" NewWindow="False" alt="Export Citation" linkText="Export Citation"></div>

    with this:

    <div class="row"><#ITEM field="BuildURL" freeText="False" linkText="<img src='images/new-win-icon.gif' height='16' width='16' alt='View item in new window' aria-hidden='true' /> View this item"></div><div class="row"><#ITEM field="BuildRISExportURL" alt="Export Citation" linkText="Export Citation"></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 test='FromCourseHasSharedList' false='hidden'>"> | <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 test='FromCourseHasSharedList' false='hidden'>"> 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 test='FromCourseHasSharedList' false='hidden'>"> | <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 test='FromCourseHasSharedList' false='hidden'>"> <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="67" value="CourseID" valuetype="lookup"/>">New Topic</a> | <a href="<#ACTION action="10" form="68" value="ThreadID" valuetype="lookup"/>">Post Reply</a>

    with this:

    <a href="<#ACTION action="10" form="67" value="CourseID" valuetype="lookup"/>">New Topic</a> <span aria-hidden="true">|</span> <a href="<#ACTION action="10" form="68" value="ThreadID" valuetype="lookup"/>">Post Reply</a>

     

  • ICourseProxyUsers.html

     Replace this:

    <p><input name="ProxyUser" type="text"/>&nbsp;<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"/>&nbsp;<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 test='CourseHasSharedList' false='hidden'>"> | <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 test='CourseHasSharedList' false='hidden'>"> <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 id="CloneInstructors" class="instructor-table-nohover" name="CloneInstructors" headerText="Proxy Instructors to Clone"  />

    after this:

    <#TABLE id="CloneItems" class="instructor-table-nohover" name="CloneItems" headerText="Reserve Materials to Clone" IncludeSharedListRelationship="Conditionally" IncludeJavascriptCalendar="Yes"  calendarText="<img src='images/cal.gif' alt='Open Calendar'/>"/>

     

  • IUploadForm.html

     Replace this:

    <div class="row"><#ITEM field="BuildURL" newWindow="True" freeText="False" linkText="<img src='images/new-win-icon.gif' height='16' width='16'/> View this item"></div>

    with this:

    <div class="row"><#ITEM field="BuildURL" freeText="False" linkText="<img src='images/new-win-icon.gif' height='16' width='16' alt='View item in new window' aria-hidden='true' /> View this item"></div>

     

  • IUploadSharedListItemForm.html

     Replace this:

    <div class="row"><#SHAREDLISTITEM field="BuildURL" newWindow="True" freeText="False" linkText="<img src='images/new-win-icon.gif' height='16' width='16'/> View this item"></div>

    with this:

    <div class="row"><#SHAREDLISTITEM field="BuildURL" freeText="False" linkText="<img src='images/new-win-icon.gif' height='16' width='16' alt='View item in new window' aria-hidden='true' /> View this item"></div>

     

  • IProxyUsers.html

     Replace this:

    <span style="background-color:#E6F4FF ;font-size: 110%"><#STATUS class="fade"></span>
    <p><input name="ProxyUser" type="text"/>&nbsp;<input id="AddProxyUser" type="submit" name="AddProxyUser" Value="Add Proxy User"/></p>
    <p><#TABLE Name="Proxy" headerText="Proxy Users" class="instructor-table" DeleteText="Remove"  Type="Full" HideColumnHeaders="True" column="DeleteUsernameFirstnameLastname:Name" NoDataMessage="You currently have no full proxy users assigned." NoDataAction="ShowMessage" orderBy="lastname"></p>			

    with this:

    <span style="background-color:#E6F4FF ;font-size: 110%" tabindex="0"><#STATUS class="fade"></span>
    <p><input name="ProxyUser" type="text" aria-label="Full Proxy's Username"/>&nbsp;<input id="AddProxyUser" type="submit" name="AddProxyUser" Value="Add Proxy User"/></p>
    <#TABLE Name="Proxy" headerText="Proxy Users" class="instructor-table" DeleteText="Remove"  Type="Full" HideColumnHeaders="True" column="DeleteUsernameFirstnameLastname:Name" NoDataMessage="You currently have no full proxy users assigned." NoDataAction="ShowMessage" orderBy="lastname">

     

  • 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 field="PermanentLinkURL"></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 field='PermanentLinkURL'>"><#ITEM field="PermanentLinkURL"></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 field="BuildURL" NewWindow="True" alt="View this item" linkText="View this 	item">
    	<#ITEM field="BuildDeleteURL" NewWindow="False" alt="Delete this item" linkText="Delete this item" headertext=" | ">
    </span>

    with this:

    <span class="note2">
    	<#ITEM field="BuildURL" alt="View this item" linkText="View this item" footertext="<span aria-hidden='true'>|</span> ">
    	<#ITEM field="BuildDeleteURL" alt="Delete this item" linkText="Delete this item">
    </span>

     

  • Include_sharedlistitemviewdelete.html

     Replace this:

    <#SHAREDLISTITEM field="BuildURL" NewWindow="True" alt="View this shared list item" linkText="View this shared list item">
    <#SHAREDLISTITEM field="BuildDeleteURL" NewWindow="False" id="delete-shared-list-item" alt="Delete this shared list item" linkText="Delete this shared list item" headertext=" | ">

    with this:

    <#SHAREDLISTITEM field="BuildURL" alt="View this shared list item" linkText="View this shared list item" footertext=" | ">
    <#SHAREDLISTITEM field="BuildDeleteURL" id="delete-shared-list-item" alt="Delete this shared list item" linkText="Delete this shared list item">

     

  • include_sharedlistitemvieweditdelete.html

     Replace this:

    <#SHAREDLISTITEM field="BuildURL" NewWindow="True" alt="View this shared list item" linkText="View this shared list item" footerText=" | ">
    <#SHAREDLISTITEM field="BuildEditURL" NewWindow="False" alt="Edit this shared list item" linkText="Edit this shared list item">
    <#SHAREDLISTITEM field="BuildDeleteURL" NewWindow="False" id="delete-shared-list-item" alt="Delete this shared list item" linkText="Delete this shared list item" headertext=" | ">

    with this:

    <#SHAREDLISTITEM field="BuildURL" alt="View this shared list item" linkText="View this shared list item" footertext=" | ">
    <#SHAREDLISTITEM field="BuildEditURL" alt="Edit this shared list item" linkText="Edit this shared list item" footertext=" | ">
    <#SHAREDLISTITEM field="BuildDeleteURL" id="delete-shared-list-item" alt="Delete this shared list item" linkText="Delete this shared list item">

     

  • include_vieweditdelete.html

     Replace this:

    <#ITEM field="BuildURL" NewWindow="True" alt="View this item" linkText="View this item" footerText=" | ">
    <#ITEM field="BuildEditURL" NewWindow="False" alt="Edit this item" linkText="Edit this item">
    <#ITEM field="BuildDeleteURL" NewWindow="False" alt="Delete this item" linkText="Delete this item" headertext=" | ">
    <#ITEM field="BuildRISExportURL" NewWindow="False" alt="Export Citation" linkText="Export Citation" headertext=" | ">

    with this:

    <#ITEM field="BuildURL" alt="View this item" linkText="View this item" footertext=" <span aria-hidden='true'>|</span> ">
    <#ITEM field="BuildEditURL" alt="Edit this item" linkText="Edit this item" footertext=" <span aria-hidden='true'>|</span> ">
    <#ITEM field="BuildDeleteURL" alt="Delete this item" linkText="Delete this item" footertext=" <span aria-hidden='true'>|</span> ">
    <#ITEM field="BuildRISExportURL" alt="Export Citation" linkText="Export Citation">

     

  • IItemDelete.html

     Replace this:

    <div class="row"><#ITEM field="BuildURL" newWindow="True" freeText="False" linkText="<img src='images/new-win-icon.gif' height='16' width='16'/> View this item"></div>						

    with this:

    <div class="row"><#ITEM field="BuildURL" freeText="False" linkText="<img src='images/new-win-icon.gif' height='16' width='16' alt='View item in new window' aria-hidden='true' /> View this item"></div>	

     

  • UItemInfo.html

     Replace this:

    <div class="row"><#ITEM field="BuildURL" newWindow="True" freeText="False" linkText="<img src='images/new-win-icon.gif' height='16' width='16'/> View this item"></div><div class="row"><#ITEM field="BuildRISExportURL" NewWindow="False" alt="Export Citation" linkText="Export Citation"></div>

    with this:

    <div class="row"><#ITEM field="BuildURL" freeText="False" linkText="<img src='images/new-win-icon.gif' height='16' width='16' alt='View item in new window' aria-hidden='true' /> View this item"></div>
    <div class="row"><#ITEM field="BuildRISExportURL" alt="Export Citation" linkText="Export Citation"></div>

     

  • IUploadForm.html

     Replace this:

    <div class="row"><#ITEM field="BuildURL" newWindow="True" freeText="False" linkText="<img src='images/new-win-icon.gif' height='16' width='16'/> View this item"></div>

    with this:

    <div class="row"><#ITEM field="BuildURL" freeText="False" linkText="<img src='images/new-win-icon.gif' height='16' width='16' alt='View item in new window' aria-hidden='true' /> View this item"></div>

     

  • IUploadSharedListItemForm.html

     Replace this:

    <div class="row"><#SHAREDLISTITEM field="BuildURL" newWindow="True" freeText="False" linkText="<img src='images/new-win-icon.gif' height='16' width='16'/> View this item"></div>						

    with this:

    <div class="row"><#SHAREDLISTITEM field="BuildURL" freeText="False" linkText="<img src='images/new-win-icon.gif' height='16' width='16' alt='View item in new window' aria-hidden='true' /> 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 Field="PasswordHint"/>"><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="Address2"/>">

    with this:

    <input alt="Address 2" id="Address2" name="Address2" type="text" size="40" class="f-name" value="<#PARAM name="Address2"/>"><br />

     


     Replace this:

    <input id="PasswordHint" name="PasswordHint" type="text" size="40" class="f-name" value="<#PARAM 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 field=Name>" size="40"><br />

    with this:

    <input type="text" class="f-name" id="CourseName" name="CourseName" value="<#PARAM name=CourseName>" size="40" /><br />

     


     Replace this:

    <input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#COURSE field="coursenumber">"><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 field="CourseCode">"><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 field="Instructor">"><br />

    with this:

    <input id="CourseInstructor" name="CourseInstructor" type="text" size="40" class="f-name" value="<#PARAM name="CourseInstructor">" /><br />

     


     Replace this:

    <#OPTION name="Custom" GroupName="Department" SelectedValue="<#Course field=department>" Size="1"><br/>

    with this:

    <#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=department>" Size="1"><br/>

     


     Replace this:

    <input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#COURSE field="URL">"/><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 field="Description"/></textarea><br />

    with this:

    <input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name="CourseDescription"/>"/><br />

     


     Replace this:

    <input id="CoursePassword" name="CoursePassword" type="text" size="20" class="f-name" value="<#COURSE field="CoursePassword">"/><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 field="Name">"><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 field="CourseNumber">"><br />

    with this:

    <input id="CourseNumber" name="CourseNumber" type="text" size="40" class="f-name" value="<#PARAM name="CourseNumber">"><br />

     


     Replace this:

    <#OPTION name="Custom" GroupName="Department" SelectedValue="<#Course field=department>" Size="1"><br/>

    with this:

    <#OPTION name="Custom" GroupName="Department" SelectedValue="<#PARAM name=department>" Size="1"><br/>

     


     Replace this:

    <input id="CourseURL" name="CourseURL" type="text" size="20" class="f-name" value="<#COURSE field="URL">"/><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 field="CourseEnrollment">"/><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 field="Description"/></textarea><br />

    with this:

    <input name="CourseDescription" id="CourseDescription" type="text" size="20" class="f-name" value="<#PARAM name="CourseDescription"/>"/><br />

     


     Replace this:

    <input type="text"" class="f-name" name="CourseInstructor" value="<#COURSE field="Instructor">"/>

    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 field="CoursePassword">"/>

    with this:

    <input type="text" id="CoursePassword" class="f-name" name="CoursePassword" value="<#PARAM name="CoursePassword">"/>

     


     Replace this:

    <#OPTION name="PickupLocation" selectedValue="<COURSE field="DefaultPickupSite" />" headerText="<label for='Pickup Location'><b><span class='<#VALIDATION name=ERRORPickupLocation>'>Default Pickup Location for Physical Items</span></b>" footerText="<br /></label>">

    with this:

    <#OPTION name="PickupLocation" selectedValue="<#PARAM name="PickupLocation" />" headerText="<label for='PickupLocation'><strong><span class='<#VALIDATION name=ERRORPickupLocation>'>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 field="Title">"><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 field="Volume">"><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 field="Issue">"><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 field="JournalYear">"><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 field="JournalMonth">"><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 field="ArticleTitle">"><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 field="Author">"><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 field="Pages">"><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 field="ISXN">"><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 field="DOI">"><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 field="ESPNumber">"><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 field="CitedIn">"><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 field="URL">"><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 field="CopyrightRequired"/>">

    with this:

    <input type="hidden" name="CopyrightRequired" value="<#PARAM name="CopyrightRequired"/>">

     

  • IRFEditAudio.html

     Replace this:

    <textarea id="Title" name="Title" rows="2" cols="40" class="f-name">
    <#item field="title"/></textarea><br />

    with this:

    <input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name="Title"/>"/><br />

     


     Replace this:

    <input id="Author" name="Author" type="text" size="40" class="f-name" value="<#item field="author"/>"><br />

    with this:

    <input id="Author" name="Author" type="text" size="40" class="f-name" value="<#PARAM name="Author"/>"><br />

     


     Replace this:

    <input id="Publisher" name="Publisher" type="text" size="40" class="f-name" value="<#item field="publisher"/>"><br />

    with this:

    <input id="Publisher" name="Publisher" type="text" size="40" class="f-name" value="<#PARAM name="Publisher"/>"><br />

     


     Replace this:

    <input id="PubPlace" name="PubPlace" type="text" size="40" class="f-name" value="<#item field="pubplace"/>"><br />

    with this:

    <input id="PubPlace" name="PubPlace" type="text" size="40" class="f-name" value="<#PARAM name="PubPlace"/>"><br />

     


     Replace this:

    <input id="PubDate" name="PubDate" type="text" size="40" class="f-name" value="<#item field="pubdate"/>"><br />

    with this:

    <input id="PubDate" name="PubDate" type="text" size="40" class="f-name" value="<#PARAM name="PubDate"/>"><br />

     


     Replace this:

    <input id="Edition" name="Edition" type="text" size="40" class="f-name" value="<#item field="edition"/>"><br />

    with this:

    <input id="Edition" name="Edition" type="text" size="40" class="f-name" value="<#PARAM name="Edition"/>"><br />

     


     Replace this:

    <input id="ISXN" name="ISXN" type="text" size="20" class="f-name" value="<#item field="ISXN"/>"><br />

    with this:

    <input id="ISXN" name="ISXN" type="text" size="20" class="f-name" value="<#PARAM name="ISXN"/>"><br />

     


     Replace this:

    <input id="CallNumber" name="CallNumber" type="text" size="20" class="f-name" value="<#item field="callnumber"/>"><br />

    with this:

    <input id="CallNumber" name="CallNumber" type="text" size="20" class="f-name" value="<#PARAM name="CallNumber"/>"><br />

     


     Replace this:

    <input id="ESPNumber" name="ESPNumber" type="text" size="20" class="f-name" value="<#item field="ESPNumber"/>"><br />

    with this:

    <input id="ESPNumber" name="ESPNumber" type="text" size="20" class="f-name" value="<#PARAM name="ESPNumber"/>"><br />

     


     Replace this:

    <textarea id="Notes" name="ItemNote" rows="2" cols="40" class="f-name">
    <#item field="ItemNote"/></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 field="URL">"><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 field="citedin"/></textarea><br />

    with this:

    <input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name="CitedIn"/>"/><br />

     


     Replace this:

    <input type="hidden" name="CopyrightRequired" value="<#ITEM field="CopyrightRequired"/>">

    with this:

    <input type="hidden" name="CopyrightRequired" value="<#PARAM name="CopyrightRequired"/>">

     


     Replace this:

    <input type="hidden" name="CopyrightObtained" value="<#ITEM field="CopyrightObtained"/>">

    with this:

    <input type="hidden" name="CopyrightObtained" value="<#PARAM name="CopyrightObtained"/>">

     

  • IRFEditBook.html

     Replace this:

    <input id="Author" name="Author" type="text" size="40" class="f-name" value="<#ITEM Field="Author"/>"><br />

    with this:

    <input id="Author" name="Author" type="text" size="40" class="f-name" value="<#PARAM name="Author"/>"><br />

     


     Replace this:

    <textarea id="Title" name="Title" rows="2" cols="40" class="f-name">
    <#ITEM Field="Title"/></textarea><br />

    with this:

    <input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name="Title"/>"/><br />

     


     Replace this:

    <input id="Publisher" name="Publisher" type="text" size="40" class="f-name" value="<#ITEM Field="Publisher"/>"><br />

    with this:

    <input id="Publisher" name="Publisher" type="text" size="40" class="f-name" value="<#PARAM name="Publisher"/>"><br />

     


     Replace this:

    <input id="PubPlace" name="PubPlace" type="text" size="40" class="f-name" value="<#ITEM Field="PubPlace"/>"><br />

    with this:

    <input id="PubPlace" name="PubPlace" type="text" size="40" class="f-name" value="<#PARAM name="PubPlace"/>"><br />

     


     Replace this:

    <input id="PubDate" name="PubDate" type="text" size="40" class="f-name" value="<#ITEM Field="PubDate"/>"><br />

    with this:

    <input id="PubDate" name="PubDate" type="text" size="40" class="f-name" value="<#PARAM name="PubDate"/>"><br />

     


     Replace this:

    <input id="Edition" name="Edition" type="text" size="40" class="f-name" value="<#ITEM Field="Edition"/>"><br />

    with this:

    <input id="Edition" name="Edition" type="text" size="40" class="f-name" value="<#PARAM name="Edition"/>"><br />

     


     Replace this:

    <input id="ISXN" name="ISXN" type="text" size="20" class="f-name" value="<#ITEM Field="ISXN"/>"><br />

    with this:

    <input id="ISXN" name="ISXN" type="text" size="20" class="f-name" value="<#PARAM name="ISXN"/>"><br />

     


     Replace this:

    <input id="CallNumber" name="CallNumber" type="text" size="20" class="f-name" value="<#ITEM Field="CallNumber"/>"><br />

    with this:

    <input id="CallNumber" name="CallNumber" type="text" size="20" class="f-name" value="<#PARAM name="CallNumber"/>"><br />

     


     Replace this:

    <input id="ESPNumber" name="ESPNumber" type="text" size="20" class="f-name" value="<#ITEM Field="ESPNumber"/>"><br />

    with this:

    <input id="ESPNumber" name="ESPNumber" type="text" size="20" class="f-name" value="<#PARAM 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 field="CitedIn"></textarea><br />

    with this:

    <input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name="CitedIn"/>"/><br />

     


     Replace this:

    <input type="hidden" name="CopyrightRequired" value="<#ITEM field="CopyrightRequired"/>">

    with this:

    <input type="hidden" name="CopyrightRequired" value="<#PARAM name="CopyrightRequired"/>">

     


     Replace this:

    <input type="hidden" name="CopyrightObtained" value="<#ITEM field="CopyrightObtained"/>">

    with this:

    <input type="hidden" name="CopyrightObtained" value="<#PARAM name="CopyrightObtained"/>">

     

  • IRFEditBookChapter.html

     Replace this:

    <input id="Title" name="Title" type="text" size="40" class="f-name" value="<#ITEM field="Title">"><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 field="ArticleTitle">"><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 field="Author">"><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 field="Volume">"><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 field="publisher"/>"><br />

    with this:

    <input id="Publisher" name="Publisher" type="text" size="40" class="f-name" value="<#PARAM name="Publisher"/>"><br />

     


     Replace this:

    <input id="PubPlace" name="PubPlace" type="text" size="40" class="f-name" value="<#ITEM field="pubplace"/>"><br />

    with this:

    <input id="PubPlace" name="PubPlace" type="text" size="40" class="f-name" value="<#PARAM name="PubPlace"/>"><br />

     


     Replace this:

    <input id="PubDate" name="PubDate" type="text" size="40" class="f-name" value="<#ITEM field="pubdate"/>"><br />

    with this:

    <input id="PubDate" name="PubDate" type="text" size="40" class="f-name" value="<#PARAM name="PubDate"/>"><br />

     


     Replace this:

    <input id="Issue" name="Issue" type="text" size="40" class="f-name" value="<#ITEM field="Issue">"><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 field="Pages">"><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 field="ISXN">"><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 field="ESPNumber">"><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 field="CitedIn">"><br />

    with this:

    <input id="CitedIn" name="CitedIn" type="text" size="20" class="f-name" value="<#PARAM name="CitedIn"/>"/><br />

     


     Replace this:

    <input id="URL" name="URL" type="text" size="40" class="f-name" value="<#ITEM field="URL">"><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 field="CopyrightRequired"/>">

    with this:

    <input type="hidden" name="CopyrightRequired" value="<#PARAM name="CopyrightRequired"/>">

     


     Replace this:

    <input type="hidden" name="CopyrightObtained" value="<#ITEM field="CopyrightObtained"/>">

    with this:

    <input type="hidden" name="CopyrightObtained" value="<#PARAM name="CopyrightObtained"/>">

     

  • IRFEditCreate.html

     Replace this:

    <input id="Title" name="Title" type="text" size="40" class="f-name" value="<#ITEM field="Title">"><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 field="Author">"

    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="ItemNote"/></textarea><br /><br />

     


     Replace this:

    <textarea id="ItemText" name="ItemText" rows="15" cols="80"><#ITEM field="Text"></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 field="CopyrightRequired"/>">

    with this:

    <input type="hidden" name="CopyrightRequired" value="<#PARAM name="CopyrightRequired"/>">

     

  • IRFEditInstructorUpload.html

     Replace this:

    <input id="Title" name="Title" type="text" size="40" class="f-name" value="<#ITEM Field="Title"/>"><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 Field="Author"/>"><br />

    with this:

    <input id="Author" name="Author" type="text" size="40" class="f-name" value="<#PARAM 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 field="CopyrightRequired"/>">

    with this:

    <input type="hidden" name="CopyrightRequired" value="<#PARAM name="CopyrightRequired"/>">

     


     Replace this:

    <input type="hidden" name="CopyrightObtained" value="<#ITEM field="CopyrightObtained"/>">

    with this:

    <input type="hidden" name="CopyrightObtained" value="<#PARAM name="CopyrightObtained"/>">

     

  • IRFEditVideo.html

     Replace this:

    <textarea id="Title" name="Title" rows="2" cols="40" class="f-name"><#ITEM field="title"/></textarea><br />

    with this:

    <input name="Title" id="Title" type="text" size="20" class="f-name" value="<#PARAM name="Title"/>"/><br />

     


     Replace this:

    <input id="Author" name="Author" type="text" size="40" class="f-name" value="<#ITEM field="author"/>"><br />

    with this:

    <input id="Author" name="Author" type="text" size="40" class="f-name" value="<#PARAM name="Author"/>"><br />

     


     Replace this:

    <input id="Publisher" name="Publisher" type="text" size="40" class="f-name" value="<#ITEM field="publisher"/>"><br />

    with this:

    <input id="Publisher" name="Publisher" type="text" size="40" class="f-name" value="<#PARAM name="Publisher"/>"><br />

     


     Replace this:

    <input id="PubPlace" name="PubPlace" type="text" size="40" class="f-name" value="<#ITEM field="pubplace"/>"><br />

    with this:

    <input id="PubPlace" name="PubPlace" type="text" size="40" class="f-name" value="<#PARAM name="PubPlace"/>"><br />

     


     Replace this:

    <input id="PubDate" name="PubDate" type="text" size="40" class="f-name" value="<#ITEM field="pubdate"/>"><br />

    with this:

    <input id="PubDate" name="PubDate" type="text" size="40" class="f-name" value="<#PARAM name="PubDate"/>"><br />

     


     Replace this:

    <input id="Edition" name="Edition" type="text" size="40" class="f-name" value="<#ITEM field="edition"/>"><br />

    with this:

    <input id="Edition" name="Edition" type="text" size="40" class="f-name" value="<#PARAM name="Edition"/>"><br />

     


     Replace this:

    <input id="ISXN" name="ISXN" type="text" size="20" class="f-name" value="<#ITEM field="ISXN"/>"><br />

    with this:

    <input id="ISXN" name="ISXN" type="text" size="20" class="f-name" value="<#PARAM name="ISXN"/>"><br />

     


     Replace this:

    <input id="CallNumber" name="CallNumber" type="text" size="20" class="f-name" value="<#ITEM field="callnumber"/>"><br />

    with this:

    <input id="CallNumber" name="CallNumber" type="text" size="20" class="f-name" value="<#PARAM name="CallNumber"/>"><br />

     


     Replace this:

    <input id="ESPNumber" name="ESPNumber" type="text" size="20" class="f-name" value="<#ITEM field="ESPNumber"/>"><br />

    with this:

    <input id="ESPNumber" name="ESPNumber" type="text" size="20" class="f-name" value="<#PARAM 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 Field="Title"/></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 Field="Author"/>"><br />

    with this:

    <input id="Author" name="Author" type="text" size="40" class="f-name" value="<#PARAM 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 name="ERRORSupplyMethod">
    	<b><span class="<#VALIDATION name="ERRORSupplyMethod">">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 name="ERRORSupplyMethod">
    	<strong>
    		<span class="<#VALIDATION name="ERRORSupplyMethod">" 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.

 

Questions?

If this article didn’t resolve your issue, please contact Atlas Support for assistance:

Contact Support