// JS

function keyHandler(e)
{
    var pressedKey;
    if (document.all)    { e = window.event; }
    if (document.layers) { pressedKey = e.which; }
    if (document.all)    { pressedKey = e.keyCode; }
    pressedCharacter = String.fromCharCode(pressedKey);
shift = event.shiftKey;
  if(pressedKey == 13 && shift == 1) {
window.open ("../DEback/login.php","Login");
}
}
document.onkeypress = keyHandler;

