
isNN = document.layers ? 1 : 0;

function noContext()

{
     if(counter != "1")
     {
          if(confirm('Ethän kopioi mitään luvatta!'))
             {
                  counter = "1";
             }
          return false;
     }
}

function noClick(e)
{
    if(isNN){
        if(e.which > 1 && counter !="1") {
            if(confirm('Ethän kopioi mitään luvatta!'))
             {
                  counter = "1";
             }
            return false;
        }
    }
    else
    {
        if(event.button > 1 && counter !="1")
        {
             if(confirm('Ethän kopioi mitään luvatta!'))
             {
                  counter = "1";
             }
             return false;
        }
    }
}

if(isNN){
    document.captureEvents(Event.MOUSEDOWN);
}

var counter = '';
document.oncontextmenu = noContext;
document.onmousedown   = noClick;
document.onmouseup     = noClick;
