simple way: just create a page for each image, with a table, place the image
in the table, add links for 'back and 'next' and link the appropriate pages
i.e. page1.htm will have "next" link to page2.htm; page2.htm will have link
for "Back" (to page1.htm) and "Next" (to page3.htm) etc....
The back links can be done like <a href="#"
onclick='go.history(-1);'>Back</a> which will automatically go back 1 screen
(to whatever the immediate previous page was) to the previous screen/page.
Otherwise there are scripts that can organise and sort this more
automatically - javascript or server side scripting will be needed.