<!--hide script from old browsers
// MAR Image Protector!
//
//
//
BroW = parseInt(navigator.appVersion)
if (BroW >= 4) {Vs = true} else {Vs = false}
if (Vs == true) {
  Wid = screen.availWidth - 30
  Hei = screen.availHeight + 50
  Left = Math.floor((Wid - 350) / 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('All webpages and images © 2000-2009\n\nMid-Appalachian Region of the NSS\n\nMay not be used without permission from MAR.\nContact MAR Webmaster at MAR_NSS@yahoo.com')
    return false
  }
}
//
//end hiding contents-->