Im working on a zope application where i have several folders, all at the same level (not parent/children).  In one case a ZPT calls a script in another folder, which in turn calls another ZPT in the first folder again.  My problem is that the base (?) URL (context?) which Zope prepends to all objects keeps building up (with the script folders name) each time this happens, and eventually something brakes probably because an object cant be found by acquisition.  Example: links created by href in ZPTs is first 
<a href="http://mysite/folderA/object">http://mysite/folderA/object</a>, then changes to <a href="http://mysite/folderA/folderB/object">http://mysite/folderA/folderB/object</a>, then to <a href="http://mysite/folderA/folderB/folderB/object">
http://mysite/folderA/folderB/folderB/object</a> and so on... If anyone can explain this to me, or link me to some examples on how this should be done, i would be glad!<br>