Looks like a script conflict. To begin with, your full page has an onload event in its body tag:
Code:
<body onload="javascript:getBlogDescription();">
The script for links in a new window also has its own onload event (find this line in that script and remove it):
Code:
window.onload=inithyperlinks
Now we need to combine this event with the existing body event, like so:
Code:
<body onload="inithyperlinks();javascript:getBlogDescription();">
If that creates other problems use:
Code:
<body onload="inithyperlinks();getBlogDescription();">
Either way, there might be yet other problems but, this must be fixed first.
Bookmarks