//----------------------------------
// Disable right-click
//----------------------------------

var message="In respect to the Artist Emmarose Louise Gallant - All rights reserved to Lightlogos Creations";


// Don't edit below!

function click(e)
{
   if ((document.all) && (event.button == 2))
   {
      alert(message);
      return false;
   }

   if ((document.layers) && (e.which == 3))
   {
      alert(message);
      return false;
   }
}

if (document.layers)
   document.captureEvents(Event.MOUSEDOWN);

document.onmousedown = click;

