OK, in http://www.mareebamm.com.au/SQAdmini.../Directors.htm you have:
Code:
<script type="text/javascript" src="includes/browser.js">
But that is not where it is, is it? It is really in:
Code:
<script type="text/javascript" src="../includes/browser.js">
Another thing that you may want to do is make all your paths absolute. Like:
Code:
<script type="text/javascript" src="http://www.mareebamm.com.au/includes/browser.js">
This approach is best for all configurable paths in config2.js and browser.js (there is only the one in browser.js) as well. That way, no matter where a page is on your website, when it looks for a file or page associated with and/or called from this script, it will know 'absolutely' where it is.
Bookmarks