function click() { 
if ((event.button==2) ||  (event.button==3)) { 
	alert("感谢您关注我们的活动 〖青岛购物网〗");
	return false;
} 
} 

function keypressed(){ 
	var key=event.keyCode;


	if (event.altKey == true ){
		alert('感谢您关注我们的活动 〖青岛购物网〗');
		return false;
	}
} 

document.onmousedown=click ; 
document.onkeydown=keypressed ; 