var message="";
var bartext='System Controller........www.bykage.com.............';
function display()
{
window.status=bartext;
tmp=setTimeout("display()",0);
}
function click(e)
{
  if (document.all)
  {
    if (event.button==2||event.button==3)
    {
     alert(message);
	 //display();
      return false;
    }
  }
  else
  {
    if (e.button==2||e.button==3)
    {
      e.preventDefault();
      e.stopPropagation();
      alert(message);
	 //display();
      return false;
    }
  }
// if (e.which)
// {
//    alert("Copyright © KAGE")
	//display();
//  }
}

if (document.all) // for IE
{
  document.onmousedown=click;
}
else // for FF
{
  document.onclick=click;
}

var message = 'Copyright © KAGE' ;
function clickie() {
if (document.all) {
//alert(message);
return false; } }
function clickns(e) {
if (document.layers||(document.getElementById&&!document.all)) {
if (e.which==2 || e.which==3) {
//alert(message);
return false; } } }
if (document.layers || document.all) {
//document.captureEvents(Event.mousedown);
//document.onmousedown=clickns;
} else {
document.onmouseup=clickns;
//document.oncontextmenu=clickie;
document.onclick=click;
}
