

// Disable Right Click
function disableRightClick(e)
{
  var message = "We take copyright seriously.\n\n Images on this site are owned and copyright Minioso Kennels and \nother parties. \n\n Images and / or content must not be reproduced in any form other than \ncomplete original context, with page content.\n\nIf you wish to use our images in any other way you must contact us for \npermission and where possible high quality originals will be issued. \n\n Breach of copyright will lead to legal action.";
  
  if(!document.rightClickDisabled) // initialize
  {
    if(document.layers) 
    {
      document.captureEvents(Event.MOUSEDOWN);
      document.onmousedown = disableRightClick;
    }
    else document.oncontextmenu = disableRightClick;
    return document.rightClickDisabled = true;
  }
  if(document.layers || (document.getElementById && !document.all))
  {
    if (e.which==2||e.which==3)
    {
      alert(message);
      return false;
    }
  }
  else
  {
    alert(message);
    return false;
  }
}
disableRightClick();


// if( window!= window.top ) { 
// top.location.href = location.href; 
// } 