/* author: CVS */
/* Creation date: 16/7/2004 */
/* removes the function key press for screens etc. */


 
	  document.onkeydown = function ()
     {
	  		/*  F11 - display address box, icons		  */
          if (event.keyCode == 122)
          {
               event.keyCode = 0;
               return false;
          }

	  		/*  F5 - redisplay/reselect the screens		  */
          if (event.keyCode == 116)
          {
               event.keyCode = 0;
               return false;
          }

	      /*  ctrl-h - display of browser history		*/

			/*  backspace - move to the previous screen in the browser memory		*/

		}
