With tex4ht I created all the files needed for javahelp (to show the html
pages and accessing specific pages for a context sensitive help).<br /><br
/>I have to access these specific pages by a key. Unfortunately these keys
(target) are generated by a sequential algorithm:<br /><br /><mapID
target="section-1"
url="docu_dese1.html#x2-10001"></mapID><br />...<br
/><mapID target="subsection-5"
url="docu_dese4.html#x5-60004"></mapID><br /><br />So
when I change the order of some sections in latex all links in my software
would be wrong!!!<br /><br />I would like to put my own keys there und I
also found the place where the target (key name) is generated. <br /><br
/>javahelp.4ht:<br />\NewConfigure{mapIdTarget}{2}<br
/>\Configure{mapIdTarget}<br />   {\sectionType-\sectionId}<br
/>   {}<br /><br />But I have no idea, what I could use instead
of this. Is there any section property field, which I can write in latex
and (ab)use here?<br /><br />Thanks.