  var msg="All artwork and limited edition collectibles on this web site are subject to price change without notice. However, we will always advise before shipping. Barker Animation is not responsible for any typographical errors. All artists names, art, sculptures and studios on this site are fully protected under U.S. copyrights and trademark laws . \n\nCopyright © 2008 Barker Animation Art Gallery. All rights reserved."
   if (document.layers)
   {
       document.captureEvents(Event.MOUSEDOWN);
   }
   document.onmousedown=trapClick;        
   function trapClick(ev)
   {
	if (document.all)
       {
	if (event.button == 2)
           {
               alert(msg);
               return false;
           }
       }
   
       if (document.layers)
       {
           if (ev.which == 3)
           {
               alert(msg);
               return false;
           }
       }
   	if (document.all)
       {
           if (event.button == 3)
           {
               alert(msg);
               return false;
           }
       }
   
       if (document.layers)
       {
           if (ev.which == 2)
           {
               alert(msg);
               return false;
           }
       }
   
   }
