// JavaScript Document
if(document.all || document.getElementById){
	document.onmousedown = RightClick;	//右クリックイベント取得
}else if(document.layers){
	window.captureEvents(Event.MOUSEDOWN);
	window.onmousedown = RightClick;	//右クリックイベント取得
}

function RightClick(e){
	if(document.all || document.getElementById){
		if(event.button & 2){
			alert("画像の保存はご遠慮願います");	//アラート画面表示
			return(false);
		}
	}else if(document.layers){
		if(e.which == 3){
			alert("画像の保存はご遠慮願います");	//アラート画面表示
			return(false);
		}
	}
}