Hola a todos.
Con este código se abre un pop-up pulsando F8, pero solo he conseguido que funcione en IE.
Código HTML:
<html>
<head>
<script type="text/javascript">
function abrir(e) {
tecla=e.keyCode
if(tecla==119)
window.open('tupagina.html');
}
</script>
</head>
<body onkeyup="abrir(event)">
</body>
</html>
Saludos,