You cannot disable any keyboard ferature with JavaScirpt.
The script to advance to the next page is:
this.pageNum++;
The script to go back one page:
this.pageNum--
The script to go to the first page:
this.pageNum = 0;
The scirpt to go to the last page:
this.pageNum = this.numPages - 1;