Hola Pentaflash.
Intentalo con este código:
Código HTML:
<html>
<head>
<script type="text/javascript">
function abrir(e) {
tecla=(document.all) ? e.keyCode : e.which;
if(tecla==84 && e.ctrlKey)
window.open('c:/del/web/dos.html');
}
</script>
</head>
<body onkeyup="abrir(event)">
</body>
</html>
Pero ten en cuenta que, por ejemplo en Firefox, Ctrl+T sirve para una función concreta (abrir nueva pestaña) y no se como anular esa función.
Saludos,