<!-- Hide script

// file anchscontents.js
// modified 10/02/05

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 (eventChooser==27) CloseWindow();
  if (which=='c') {
    window.open('anchscontents.html', 'contentsWindow',
          'status=1, scrollbars=1, width=700, height=400, resizable=1, left=80, top=80'
          ); 
    return false;
  }
}

function CloseWindow(){
    window.close();
}
  
function openContents(){
    window.open('anchscontents.html', 'contentsWindow',
          'status=1, scrollbars=1, width=700, height=400, resizable=1, left=80, top=80'
          ); 
    return false;
}

window.status="Press Esc to close.";

document.onkeypress=getKey;
  
// (c) Copyright Ian James Douglas MacGregor and Ian Ross MacGregor, 2001-2005.
// 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 -->
