function disableSelection(a){if(typeof a.onselectstart!="undefined"){a.onselectstart=function(){return false}}else{if(typeof a.style.MozUserSelect!="undefined"){a.style.MozUserSelect="none"}else{a.onmousedown=function(){return false}}}a.style.cursor="default"}function checkKey(c){var a=c.keyCode?c.keyCode:c.charCode;var b=c.ctrlKey;if(a==97&&b==true){return false}}document.onkeypress=checkKey;
