<!--// Hide Javascript

//file anchsleft2.js
//amended 30/03/01

 function getKey(keyStroke){
 if(document.all){
    eventChooser = event.keyCode;
    which = String.fromCharCode(eventChooser).toLowerCase();
  }
  else{
    if(document.getElementById){
      eventChooser = keyStroke.which;
      which = String.fromCharCode(eventChooser).toLowerCase();
    }
    if(document.layers){
      eventChooser = keyStroke.which;
      which = String.fromCharCode(eventChooser).toLowerCase();
    }
  }
  if (which=='b') addbookmark();
}
 document.onkeypress=getKey;
 
 var bookurl="http://www.50chessgames.freeserve.co.uk/"
 var booktitle="50 Chess Games"
 function addbookmark(){
    window.external.AddFavorite(bookurl,booktitle) 
 }
 
// (c) Copyright Ian James Douglas MacGregor and Ian Ross MacGregor, 2001.
// All rights reserved.
// This website (including its constituent html, javascript and image files), may not be 
// copied, printed out, or ammended in any way, without the written permission of the 
// copyright holders.

// End hiding -->

