First of all, and this is probably unrelated, instead of using:
Code:
loadobjs('css/style.css', 'css/title.css', 'zoom/zoom.css', 'js/imageswap.js')
over and over, since these resource files are integral to your page's working anyway, why not just include them in the head section of the 'top' page?
Now the trouble may be no return value for the onclick event. So you could do (scroll the code block to the right to see the highlighted addition):
Code:
<a href="javascript:void(0);" onclick="ajaxpage('title.inc.php?ititlenum=10674', 'middle_title'); loadobjs('css/style.css', 'css/title.css', 'zoom/zoom.css', 'js/imageswap.js');return false;">
Or after my other recommended change (scroll the code block to the right to see the highlighted addition):
Code:
<a href="javascript:void(0);" onclick="ajaxpage('title.inc.php?ititlenum=10674', 'middle_title');return false;[/ICODE]">
I say may because a simple local test will not suffice in determining the efficacy of this solution where AJAX is involved. In other words, there could also still be other problems.
Bookmarks