For one thing, in navbar.js, this line:
Code:
var hidemenu_onclick="yes"
should be:
Code:
var hidemenu_onclick="yes"
There are 48 instances of '"' in navbar.js, probably meaning 24 situations similar to the above. Most likely all '"'s need to be replaced with the double quote (").
There could be other problems. For example in '/livehelp/include/javascript.php' on line 142, there is:
Code:
this.currentY = parseInt(document.getElementById('floatLayer').style.top);
But no element with the id 'floatLayer' exists on the page.
To easily see if there are any other errors, these need to be corrected first.
Bookmarks