function bbkbhdlr(evnt) {
 var e = (evnt || window.event);
 if (e.shiftKey && e.ctrlKey && (e.keyCode==69)) {
  e.returnValue = false;
  window.location = '/Login.aspx?ReturnUrl=' + encodeURIComponent(window.location.pathname + window.location.search);
  return false;
 }
}
window.onload = function() { document.body.onkeydown = bbkbhdlr; };
