
var copyright="Copyright &#169; 2010 House And Garden Flags. These images are protected under United States and International Copyright Laws.";

function noRightClick(e) {
  if (document.layers || document.getElementById && !document.all) {
    if (e.which == 2 || e.which == 3) {
      document.captureEvents(Event.MOUSEDOWN);
//      alert(copyright);
      return false;
    }
  } else if (document.all && !document.getElementById) {
    if (event.button == 2) {
//      alert(copyright);
      return false;
    }
  }
}

function noContextMenu(e) {
//      alert(copyright);
	  return false;
}

function noClip(e) {
  if(document.all) {
    window.clipboardData.setData("Text", "");
  } 
  return true;
}

document.onblur = noClip;
document.onmousedown = noRightClick;
document.oncontextmenu = noContextMenu;