function checkKey()
{
  if (window.event.ctrlKey)  // checks whether the SHIFT key
  {
    // the 'k' key
    if(window.event.keyCode==11)
    {
      backendWindow=window.open('/kohesion/', 'backendWindow', '');
      backendWindow.focus();
    }
  }
}
