<!--
//右クリック禁止スクリプト
function mdown(e) {
  if (navigator.appName == "Microsoft Internet Explorer") {
    if (event.button & 2) {
      alert("このページでは右クリックできません");
      return(false);
    }
  } else if (navigator.appName == "Netscape") {
    if (e.which == 3) {
      alert("このページでは右クリックできません");
      return(false);
    }
  }
}
if (document.all) {
  document.onmousedown = mdown;
}
if (document.layers) {
  window.onmousedown = mdown;
  window.captureEvents(Event.MOUSEDOWN);
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function changeTableText1(cText){
if (document.all){
document.all["ren"].innerText = cText;
}
}
function changeTableText2(cText){
if (document.all){
document.all["toku"].innerText = cText;
}
}
// -->