//
// noright click
	if (window.Event) // Netscape
  document.captureEvents(Event.MOUSEUP);
  
 function nocontextmenu()  // Internet Explorer
{
 event.cancelBubble = true
 event.returnValue = false;
 
 return false;
}
 
function norightclick(e)
{
 if (window.Event)
 {
  if (e.which == 2 || e.which == 3)
   return false;
 }
 else
  if (event.button == 2 || event.button == 3)
  {
   event.cancelBubble = true
   event.returnValue = false;
   return false;
  }
 }
 
document.oncontextmenu = nocontextmenu;
document.onmousedown = norightclick;

<!--
var spead  = 1
var m1 = "*"
var m2 = "*"

var msg = m1+m2
msg = msg+msg

function statusMsg(){
setTimeout("statusMsg()",spead);
msg = msg.substring(2,msg.length)+msg.substring(0,2);
window.status = msg
}

statusMsg()
// -->