window.document.onkeydown = checkKey;function checkKey(){    var li_backspace_key = 8;	if (event.ctrlKey){	 alert("この画面ではCTRLキーは使用できません");	}	if(typeof e == "undefined")	e = window.event;	var bCtrlKey = e.ctrlKey;	var iCode = e.keyCode;	if(bCtrlKey && iCode == 78){		return false;	} else {		return true;	}}/*------------------------------------------右クリック禁止-------------------------------------------*/if(document.layers)document.captureEvents(Event.MOUSEDOWN);document.onmouseclick = mouse_action;function mouse_action(a){	if (navigator.appName.charAt(0)=="M") {		if (event.button == 2) { alert("この画面では右クリックは使用できません"); }	}	if (navigator.appName.charAt(0) == "N") {		if (a.which == 3) { alert("この画面では右クリックは使用できません"); }	}	return false;}
