


// 右クリック禁止


window.onload = initRollovers;

function notes(eve){
    if(document.all){
        if(event.button == 2){
            alert("無断転写お断りいたします。");
            return false;
        }
    }
    if(document.layers){
        if(eve.which == 3){
            alert("無断転写お断りいたします。");
            return false;
        }
    }
}
if(document.layers)document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=notes;


