I would like to create 3 navigations in Cognos 11 Report from prompt page, to be able to quick navigate to page2, page3 and page4. Below is script I found in internet, it uses JS and HTML item functionality. I used it in prompt page but Im able to navigate only to NEXT page (=2 page). Is it possible to adjust this script to be able to navigate to page 3 and 4 also? I tried different options, but it did not work for me, could you please advise?
<script>
function nextPage() {
var ocr= cognos.Report.getReport("_THIS_");
ocr.sendRequest(cognos.Report.Action.NEXT)
}
</script>