cx_AttachEvent(document, "keypress", cx_HotKeyCheck);
//document.onkeypress=catchKey 

function cx_HotKeyCheck(e) { 
  if(e) {
    cxCMSGlobal.HotKeyBuffer+=e.charCode;
  } else {
    cxCMSGlobal.HotKeyBuffer+=event.keyCode;
  }
  if(cxCMSGlobal.HotKeyBuffer.indexOf(cxCMSGlobal.HotKey)!=-1){cxCMSGlobal.HotKeyBuffer="";cx_HotKeyActivate();}
} 

function cx_HotKeyActivate() {
  if(xGetElementById("cxHeader")) {
    cxTab_OnClick();
  } else {
    cxLoginBox_Toggle();
  }
}