function click(e) 
{
	
 if (document.all) 
 {
  if (event.button == 2) 
  {
   alert("© 2006 CARISTRAP International Inc.");
   return false;
  }
 }

 if (document.layers) 
 {
  if (e.which == 3) 
  {
	 alert("© 2006 CARISTRAP International Inc.");
 	return false;
  }
 }
	
	//return false;
}
document.onmousedown=click;
