document.onkeydown = function keyPress(evt) { if(document.all) { var whichKey = window.event.keyCode; var altKey = window.event.altKey; var ctrlKey = window.event.ctrlKey; var altLeft = window.event.altLeft; } else if(window.navigator.userAgent.toLowerCase().match("gecko")) { var isMozilla = true; var whichKey = evt.which; var altKey = evt.altKey; var ctrlKey = evt.ctrlKey; var altLeft = evt.altLeft; } if(whichKey == 27) { window.close(); } if(altKey) { if(altKey && whichKey == 76) { alert("Lütfen demo sayfanızı belirtilen adresten açtıktan sonra ALT+L tuş kombinasyonu ile giriş yapınız."); } //cancelKey(event); } if(ctrlKey) { if(ctrlKey && whichKey == 83) { saveContent(); cancelKey(event); } } }