It looks like FF thinks the path is relative to the path already loaded in the main frame because, sometimes it works and sometimes it doesn't. When it doesn't, the file it is looking for is something like:
Code:
/html/IntegratedSystems/html/IntegratedSystems/Behaviour.htm
Try using absolute or, at least virtual paths. For example, where you have (relative path):
Code:
Menu2_2=new Array("Behavioral Science","html/IntegratedSystems/Behaviour.htm","",0);
Try (virtual path):
Code:
Menu2_2=new Array("Behavioral Science","/html/IntegratedSystems/Behaviour.htm","",0);
or, if that doesn't work, absolute path:
Code:
Menu2_2=new Array("Behavioral Science","http://www.bioengenesis.com/html/IntegratedSystems/Behaviour.htm","",0);
Bookmarks