Below is some great stuff David Bartosik provided in days of past. I
suggest you copy it and save it for those times of need.
--
Don
Vancouver, USA
====================
Publisher has no built in support for "bookmarking". To add bookmarking
requires coding it yourself with an HTML code fragment. Since TOP is a
standard bookmark it takes only a small snippet of code to add Top Of Page
functionality to your page. Just draw an HTML code fragment at the bottom of
the page and paste the following code snippet:
<a href="#top">back to top</a>
To create other anchor links within your web page, here is an example of how
I do it. Say I have sections on a page about David Bartosik, JoAnn, and Don.
At the top of my page I would use the HTML code fragment to insert:
<A HREF="#READ HERE">David Bartosik</A>
<A HREF="#READ HERE1">JoAnn</A>
<A HREF="#READ HERE2">/Don</A>
Then beside each section in the page I would insert:
<A NAME="READ HERE"></A>
<A NAME="READ HERE1"></A>
<A NAME="READ HERE2"></A>
When you click on the link David Bartosik, etc at the top of the page, you
will directed to the individual sections.
To create a "back button".
<INPUT TYPE="button" VALUE="Go back" ONCLICK="history.back(3)"NAME="button">