// library.js
// kevin Ashcroft, acs December 2000
// Standard JavaScript routines

// Check for older browsers not able to support document.images
var imagesSupport;
if (document.images != null)
  { imagesSupport = true }
else
 {
   imagesSupport = false
 };