At a glance it seems the problem is due to your page containing two body onload event handlers, causing the former to be overwritten (the DHTML ad one). Find the two lines:
Code:
onload=initAd;
window.onload=start_countup
Remove them, and replace the later line with the below instead:
Code:
window.onload=function(){
initAd()
start_countup()
}
BTW, please note that your page is currently in violation of our usage terms, since the credit notice doesn't appear inline on the page. Please reinstate the credit notice:
Bookmarks