// JavaScript Document

function otherwindow(loc) {
      var wnd="otherwindow";
      var width='650';
      var height='500';
      var myWindow = window.open(loc, wnd, 'resizable=yes,scrollbars=yes, status=0,toolbar=no,width='+width+',height='+height);
      if (myWindow.focus!=null) {
          myWindow.focus();
     }
}


function Cart() { window.open("","Cart","location=no,status=yes,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,width=650,height=500"); }



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);
}

