function click(e) 
{
	
 if (document.all) 
 {
  if (event.button == 2) 
  {
   alert("©Copyright 2007 Lake Matley Inc.");
   return false;
  }
 }

 if (document.layers) 
 {
  if (e.which == 3) 
  {
	 alert("©Copyright 2007 Lake Matley Inc.");
 	return false;
  }
 }
	
	return false;
}
document.onmousedown=click;