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>");

   msgWindow.document.write("</BODY>");
   msgWindow.document.close();


} else {                        // Not Netscape or Internet Explorer
        alert(message);
}

} // end of JavaScript Function feedback

