
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;


function openwin_fushimi(page,wname,w,h){
win_set = 'toolbar=no,location=1,directories=no,status=yes,menubar=1,scrollbars=no,resizable=yes,width='+w+',height='+h;
swin = window.open(page,wname,win_set);
}

function openwin_ryouanji(page,wname,w,h){
win_set = 'toolbar=no,location=1,directories=no,status=yes,menubar=1,scrollbars=no,resizable=yes,width='+w+',height='+h;
swin = window.open(page,wname,win_set);
}

function openwin_yasaka(page,wname,w,h){
win_set = 'toolbar=no,location=1,directories=no,status=yes,menubar=1,scrollbars=no,resizable=yes,width='+w+',height='+h;
swin = window.open(page,wname,win_set);
}

