////////////////////////////////////////////////
// 右クリック禁止

var num ;		// ランダム関数より取得する数値

function no_right(){

	document.onmousedown = no_right;

	if(document.onmousedown)
	{
		// 右クリック
		if(event.button == 2)
		{
				alert("Thank you so much for coming.");
		}
	}
}




