
function s_text(show_text){
     box.style.visibility = "visible";
     box.innerHTML=on_text[show_text];
     x = document.body.scrollLeft; //左右の位置
     y = document.body.scrollTop; //上下の位置
     //ウィンドウセット
     box.style.left = x+0;
     box.style.top = y+0; 
}
function nonPop(){
     box.style.visibility = "hidden";
}

//右クリック禁止//
var message = "右クリックできません。";          //右クリックのときに表示するコメント
function click(e) {
    if(document.all) {
        if(event.button == 2) {
            alert(message);
            return false;
        }
    }
    document.onmousedown = click;
}