function disableRightClick(e) {
	
	if (typeof e.onselectstart!="undefined")e.onselectstart=function(){return false}
	else if (typeof e.style.MozUserSelect!="undefined") e.style.MozUserSelect="none"
	else e.onmousedown=function(){return false}
}
