
function SetCookie (name, value) {
  var argv = SetCookie.arguments;
  var argc = SetCookie.arguments.length;
  var expires = (argc > 2) ? argv[2] : null;
  var path = (argc > 3) ? argv[3] : null;
  var domain = (argc > 4) ? argv[4] : null;

document.cookie = name + "=" + escape (value) +
((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
((path == null) ? "" : ("; path=" + path)) +
((domain == null) ? "" : ("; domain=" + domain));
}

function getCookieVal (offset) {
  var endstr = document.cookie.indexOf (";", offset);
  if (endstr == -1)
    endstr = document.cookie.length;
  return unescape (document.cookie.substring(offset, endstr));
}

function GetCookie (name) {
  var arg = name + "=";
  var alen = arg.length;
  var clen = document.cookie.length;
  var i = 0;
    while (i < clen) {
         var j = i + alen;
   if (document.cookie.substring(i, j) == arg)
         return getCookieVal (j);
      i = document.cookie.indexOf(" ", i) + 1;
      if (i == 0) break;
   }
return null;
}

function goto_URL(object) {
      document.location.href = object.options[object.selectedIndex].value;

      return false;
    }

<!--Beginning of the WSU Identifier Zone. Refer to www.wsu.edu/identity/ for more information. -->
document.write("<center><TABLE WIDTH='775' BORDER='0' CELLPADDING='0' CELLSPACING='0' height='41' background='http://www.wsu.edu/navigatewsu/WSU-banner_spacer.gif' name='WSU Banner'><TR><TD nowrap align='left' height='41' valign='top' WIDTH='100%'><nobr><a href='http://www.wsu.edu/' target='_top'><img src='http://www.wsu.edu/navigatewsu/WSU-banner_signature.gif' alt='Washington State University' title='Washington State University' border='0'></a><a href='http://www.wsu.edu/worldclass.html' target='_top'><img src='http://www.wsu.edu/navigatewsu/WSU-banner_tagline.gif' alt='World Class. Face to Face.' title='World Class. Face to Face.' border='0'></a><a href='http://www.wsu.edu/futurestudents/' target='_top'><img src='http://www.wsu.edu/navigatewsu/WSU-banner_futurestudents.gif' alt='Future Students' title='Future Students' border='0'></a><a href='http://www.wsu.edu/campuses/' target='_top'><img src='http://www.wsu.edu/navigatewsu/WSU-banner_statewide.gif' border='0' alt='Campuses' title='Campuses'></a><a href='http://www.wsu.edu/' target='_top'><img src='http://www.wsu.edu/navigatewsu/WSU-banner_wsuhome.gif' border='0' alt='WSU Home' title='WSU Home'></a><a href='http://www.wsu.edu/search.html' target='_top'><img src='http://www.wsu.edu/navigatewsu/WSU-banner_wsusearch.gif' border='0' alt='WSU Search' title='WSU Search'></a><a href='http://www.wsu.edu/redirect.html' target='_top'><img src='http://www.wsu.edu/navigatewsu/WSU-banner_redirect.gif' alt=' ' title=' ' border='0'></a></nobr></TD></TR></TABLE>");
<!--End of the WSU Identifier Zone. -->

document.write('<table border="0" cellpadding="0" cellspacing="0" width="775">');
document.write('  <tr>');
document.write('    <td align="right">');
document.write('      <div><a href="index.htm"><img src="./images/top-bar.jpg" height="30" width="775" alt="Plagiarism banner" border="0"></a></div>');
document.write('    </td>');
document.write('  </tr>');
document.write('</table>');
