You would need to get rid of this code in the actinic templates to stop the crashing
and while you are in there, you could delete on of the two javascript yahoosections codes you have in there. That is probably what is causing the loading problem. The first YahooSections builds a page list two levels deep, then the second one immediately builds a page list three sections deep...
Can't see why you would want to do that.
Code:
function detect() { framesetpage="index.htm"; thispage=window.location.href; if (thispage.indexOf('://')<0) {thispage="://"+thispage;}; prefix=thispage.substring(0,thispage.lastIndexOf('://')); suffix=thispage.substring(thispage.lastIndexOf('://')+3,thispage.length); // alert('the subpage is:['+prefix+']['+suffix+']'); if (parent.location.href==window.location.href) {parent.location.href=framesetpage+"?"+prefix+"&&&"+suffix}; }
Can't see why you would want to do that.
Comment