window.defaultStatus = "Fünf Freunde Fanpage";

function clickns(e) {
  if (document.all) if (event.button == 2) return false;
  if (document.layers) if (e.which == 3) return false; //GW
}

function clickie() {
  event.cancelBubble = true 
  event.returnValue = false; 
  return false; //GW
}

if (document.layers) document.captureEvents(Event.MOUSEDOWN); //NS!!
document.onmousedown=clickns;
document.oncontextmenu = clickie;


