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);
}
