Error de Javascript en IE: 'target' es nulo o no es un objeto

document.onkeydown = function(event) {
    var tagName = event.target.tagName;
    if (tagName != 'INPUT' && tagName != 'TEXTAREA' && !event.alt && event.control) {

        if (event.ctrlKey && event.keyCode == 37) {
            if (_this.currentPage > 1) {
                window.location.href = _this.baseUrl.replace(/%page%/i, _this.currentPage + 1);
            }
        } else if (event.ctrlKey && event.keyCode == 39) {
            if (_this.currentPage < _this.pagesTotal) {
                window.location.href = _this.baseUrl.replace(/%page%/i, _this.currentPage - 1);
            }
        }
    }
}

Esto me da un error solo en IE 8:

'target' es nulo o no es un objeto

para esa lineavar tagName = event.target.tagName;

Cómo arreglar eso. El error ocurre cuando presiono Ctrl o el botón de las flechas.

Respuestas a la pregunta(2)

Su respuesta a la pregunta