A ver si este ejemplo te orienta
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" />
function CapturaTecla(evnt) {
var ev = (evnt) ? evnt : event;
var tecla=(ev.which) ? ev.which : event.keyCode;
if(tecla == 37){
alert('Se presionó flecha izq.');
// redirección a página previa
}
if(tecla == 39){
alert('Se presionó flecha der.');
// redirección a página siguiente
}
}
if (window.document.addEventListener) {
window.document.addEventListener("keydown", CapturaTecla, false);
} else {
window.document.attachEvent("onkeydown", CapturaTecla);
}
faltaría creo, pasarle a la función un segundo parámetro con el numero de página.Hay qye ver que hace tu función enviar
Saludos