<!--hide script from old browsers
Browser = parseInt(navigator.appVersion)
if (Browser >= 4) {Vers = true} else {Vers = false}
if (Vers == true) {
  Width = screen.availWidth - 30
  Height = screen.availHeight + 50
  Left = Math.floor((Width - 350) / 2) ; Top = Math.floor((Height - 100) / 2)
  if (document.layers) {
    document.captureEvents(Event.MOUSEDOWN)
  }
  document.onmousedown = noClick
}
//
function noClick (e) {
  flag = false
  if (document.layers) {button = e.which ; if (button == 3) {flag = true}
  } else {button = event.button ; if (button == 2) {flag = true}}
  if (flag) {
    alert('All photographs ©2001-2002 by Sue Sturges.')
    return false
  }
}
//
//end hiding contents-->
