word = '当コンテンツは著作権により保護されています。\n' +
          '引用される方はアブラハム・プライベートバンク株式会社にご一報ください。リンクはフリーです。';

function notes(eve){
    if(document.all){
        if(event.button == 2){
            alert(word);
            return false;
        }
    }
    if(document.layers){
        if(eve.which == 3){
            alert(word);
            return false;
        }
    }
}
if(document.layers)document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=notes;
