function disableRightClick(e) {
	if (e.button==2) { //firefox disable
		e.preventDefault();
		e.stopPropagation();
		return false;
	}
	e.style.display='none';
}




