Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:20:54

0001 // Morten's JavaScript Tree Menu Tracking Script
0002 // version 2.3.2-macfriendly, dated 2002-06-10
0003 // http://www.treemenu.com/
0004 
0005 // Copyright (c) 2001-2002, Morten Wang & contributors
0006 // All rights reserved.
0007 
0008 // This software is released under the BSD License which should accompany
0009 // it in the file "COPYING".  If you do not have this file you can access
0010 // the license through the WWW at http://www.treemenu.com/license.txt
0011 
0012 if((navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 3 && navigator.userAgent.indexOf("Opera") == -1) || (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) >= 4) || (navigator.appName == "Opera" && parseInt(navigator.appVersion) >= 5)) {
0013         var MTMCodeFrame = "code";
0014         for(i = 0; i < parent.frames.length; i++) {
0015                 if(parent.frames[i].name == MTMCodeFrame && parent.frames[i].MTMLoaded) {
0016                         parent.frames[i].MTMTrack = true;
0017                         setTimeout("parent.frames[" + i + "].MTMDisplayMenu()", 50);
0018                         break;
0019                 }
0020         }
0021 }