<script>
   <!-- Hide SCRIPT from old browsers

function feedback(message) {

var browser = navigator.appName;
var browserVersion = navigator.appVersion;

if ((browser.indexOf ("Netscape") >= 0)  ||  (browser.indexOf ("Explorer") >= 0)) {
// This function opens a new window with the message text.
// The window will disappear when it loses focus.
   msgWindow=window.open('','msgWindow','toolbar=no,location=no,directories=no, status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=210,height=180');
   msgWindow.document.open()
   msgWindow.focus()
   msgWindow.document.write("<HEAD><TITLE>message</TITLE>");
   msgWindow.document.write("</HEAD>");
   msgWindow.document.write
      ("<BODY BGCOLOR='#FAE080' onblur='window.close()'>");
   msgWindow.document.write
      ("<P><CENTER><FONT SIZE=+1><B>" + message + "</FONT></B></P></CENTER>");

if (browser.indexOf ("Explorer") >= 0) {
   msgWindow.document.write
    ("<FORM name='tempForm' action=mailto:'ponterior@cortland.edu'><MH hiddenSubject:  WWWPriority: Low></MH>");
   msgWindow.document.write
      ("<P><CENTER><INPUT type=BUTTON name=closeWin value='OK' onClick='window.close()'><BR></CENTER></FORM>");
   }                          // button for Internet Explorer

if ((browser.indexOf ("Netscape") >= 0) && (browserVersion.indexOf ("2.") == 0)) {
   msgWindow.document.write
    ("<FORM name='tempForm' action=mailto:'mponterio@snycorva.cortland.edu'><MH hiddenSubject:  WWWPriority: Low></MH>");
   msgWindow.document.write
      ("<P><CENTER><INPUT type=BUTTON name=closeWin value='OK' onClick='window.close()'><BR></CENTER></FORM>");
   }                          // button for Ver 2 of Netscape

   msgWindow.document.write("</BODY>");
   msgWindow.document.close();

   if ((browserVersion.indexOf ("Macintosh") >= 0) && (browserVersion.indexOf ("2.") != 0))  {  // Netscape Mac
      msgWindow.focus();  // PROBLEM in IE 3.0
   }

} else {                        // Not Netscape or Internet Explorer
        alert(message);
}

} // end of JavaScript Function feedback

// End the hiding here. -->