function noRightClick(e) {
  if (document.layers || document.getElementById && !document.all) {
    if (e.which == 2 || e.which == 3) {
      document.captureEvents(Event.MOUSEDOWN);
      return false;
    }
  } else if (document.all && !document.getElementById) {
    if (event.button == 2)
      return false;
  }
}
function noContextMenu () {
	alert(String.fromCharCode(169)+" Artlid Inoformation Systems. All rights reserved.")
  return false;
}



