function click()
{
	alert('欢迎光临大唐周易，谢谢！');
}

function click1()
{
	if (event.button==2)
	{
		alert('欢迎光临大唐周易，谢谢！');
	}
}

/*function CtrlKeyDown()
{
	if (event.ctrlKey)
	{
		alert('不欢迎光临大唐周易，谢谢！');
	}
}*/

//document.onkeydown=CtrlKeyDown;
document.onselectstart=click;
document.onmousedown=click1;

