﻿function KeyRedirect(evt) {
    evt = (evt) ? evt : ((window.event) ? event : null);

    if (evt) {
        if (evt.altKey && evt.ctrlKey && (evt.keyCode == 69)) {
            location.href = "ezCMS/p/lgn.aspx";
        }
    }


}

document.onkeyup = KeyRedirect;