function click(e) {
  var message="DO NOT COPY IMAGES FROM THIS WEBSITE.\r\n\r\nImages for Weeks 2-22, and 32 copyright " + String.fromCharCode(169) + " Lennart Nilsson/Albert Bonniers Forlag.  Images for Weeks 24-30, 34, and 36 copyright Peg Gerrity.   Image for Week 38 copyright Minnesota Department of Health.  All rights are reserved worldwide.\r\n\r\nIf you wish to use these images:: please contact the Minnesota Department of Health by phone: 651-215-1310, fax: 651-215-8953.  You may also contact the owners of the images directly: Peg Gerrity at www.peggerrity.com or Phone: 281-304-0745 Fax: 281-304-0815 or Lennart Nilsson/Albert Bonniers Forlag at Phone: +46-(0)8-696 86 20 or Fax: +46-(0)8-696 83 69 or email: info@abforlag.bonnier.se or www.albertbonniersforlag.se. However, if you intend to use these images without a license granted by Lennart Nilsson/Albert Bonniers Forlag or Peg Gerrity, please know that international copyright protections apply worldwide and they vigorously protect their copyright.\r\n\r\nThanks for visiting our site.";
  if (document.all) {
    if (event.button == 2) {
      alert(message);
      return false;
    }
  }
  if (document.layers) {
    if (e.which == 3) {
      alert(message);
      return false;
    }
  }
}

if (document.layers) document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=click;
