It's a little confusing trying to debug your page, since it's contained in frames. But assuming this is the actual page in question, looking at the source, one problem I see is highlighted in red:
Code:
<td width="96" height="25"><a href="#" rel="#default"><img src="images/Home.png" width="96" height="25" border="0" /></a></td>
<td width="78" height="25"><a href="http://96.229.98.240:8080/stats/index.php"><img src="images/Stats.png" width="78" height="25" border="0" /></a></td>
<td width="82" height="25"><img src="images/servers.png" width="82" height="25" /></td>
<td width="237" height="25"><img src="images/index_10.png" width="237" height="25" /></td>
<td width="80" height="25"><a href="admin.html" rel="countrycontainer"><img border="0" src="images/Admin.png" width="80" height="25" /></a></td>
<td width="76" height="25"><img src="images/Links.png" width="76" height="25" /></td>
<td width="99" height="25"><a href="contactiframe.html" rel="countrycontainer"><img src="images/contact.png" width="99" height="25" border="0" /></a></td>
</tr>
</ul>
<tr>
<td width="780" height="4" colspan="9"><img src="images/index_142.PNG" width="780" height="4" /></td>
</tr>
</table>
<Table align="center" width="780" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="22" background="images/index_15L.PNG"></td>
<td width="736"><div style="background:#414141" id="countrydivcontainer"><img src="images/nil.png" width="736" height="1" /></div></td>
<td width="22" background="images/index_15R.PNG"></td>
</tr>
<script type="text/javascript">
var countries=new ddajaxtabs("hometabs", "countrydivcontainer")
countries.setpersist(true)
countries.setselectedClassTarget("link") //"link" or "linkparent"
countries.init()
</script>
The part in red is incorrect- it should point to "countrydivcontainer" instead, or the ID of the DIV that will show the fetched content.
Bookmarks