message    = "Creative and intellectual work is protected by U.S. and international law\n\nFull or partial reproduction of any kind without written permission from the Artist / Owner is prohibited";
isIE=document.all;
isNN=!document.all&&document.getElementById;
isN4=document.layers;
if (isIE||isNN)
{
 document.oncontextmenu=checkV;
}
else
{
 document.captureEvents(Event.MOUSEDOWN || Event.MOUSEUP);
 document.onmousedown=checkV;
} 
function checkV(e)
{
 if (isN4)
  {
 if (e.which==2||e.which==3)
 	{
	dPUW=alert(message);
	return false;
	}
 }
 else
 {
  dPUW=alert(message);
  return false;
 }
}

