BroW = parseInt(navigator.appVersion)
if (BroW >= 4) {Ver = true} else {Ver = false}
if (Ver == true) {
  Wid = screen.availWidth - 75
  Hei = screen.availHeight + 50
  Left = Math.floor((Wid - 400) / 2) ; Top = Math.floor((Hei - 100) / 2)
  if (document.layers) {
    document.captureEvents(Event.MOUSEDOWN)
  }
  document.onmousedown = noClick
}
function noClick (e) {
  flag = false
  if (document.layers) {which = e.which ; if (which == 3) {flag = true}
  } else {which = event.button ; if (which == 2) {flag = true}}
  if (flag) {
    alert('The images & sketches on this website are ©2001 Tailored Properties, Inc. and may not be used without written permission. Contact webmaster@tailoredproperties.com')
    return false
  }
}