if (window != top) top.location.href = location.href;

// Ultimate client-side JavaScript client sniff. Version 3.03
// (C) Netscape Communications 1999-2001.  Permission granted to reuse and distribute.
// Revised 17 May 99 to add is_nav5up and is_ie5up (see below).
// Revised 20 Dec 00 to add is_gecko and change is_nav5up to is_nav6up
//                      also added support for IE5.5 Opera4&5 HotJava3 AOLTV
// Revised 22 Feb 01 to correct Javascript Detection for IE 5.x, Opera 4,
//                      correct Opera 5 detection
//                      add support for winME and win2k
//                      synch with browser-type-oo.js
// Revised 26 Mar 01 to correct Opera detection
// Revised 02 Oct 01 to add IE6 detection

// Everything you always wanted to know about your JavaScript client
// but were afraid to ask. Creates "is_" variables indicating:
// (1) browser vendor:
//     is_nav, is_ie, is_opera, is_hotjava, is_webtv, is_TVNavigator, is_AOLTV
// (2) browser version number:
//     is_major (integer indicating major version number: 2, 3, 4 ...)
//     is_minor (float   indicating full  version number: 2.02, 3.01, 4.04 ...)
// (3) browser vendor AND major version number
//     is_nav2, is_nav3, is_nav4, is_nav4up, is_nav6, is_nav6up, is_gecko, is_ie3,
//     is_ie4, is_ie4up, is_ie5, is_ie5up, is_ie5_5, is_ie5_5up, is_ie6, is_ie6up, is_hotjava3, is_hotjava3up,
//     is_opera2, is_opera3, is_opera4, is_opera5, is_opera5up
// (4) JavaScript version number:
//     is_js (float indicating full JavaScript version number: 1, 1.1, 1.2 ...)
// (5) OS platform and version:
//     is_win, is_win16, is_win32, is_win31, is_win95, is_winnt, is_win98, is_winme, is_win2k
//     is_os2
//     is_mac, is_mac68k, is_macppc
//     is_unix
//     is_sun, is_sun4, is_sun5, is_suni86
//     is_irix, is_irix5, is_irix6
//     is_hpux, is_hpux9, is_hpux10
//     is_aix, is_aix1, is_aix2, is_aix3, is_aix4
//     is_linux, is_sco, is_unixware, is_mpras, is_reliant
//     is_dec, is_sinix, is_freebsd, is_bsd
//     is_vms
//
// See http://www.it97.de/JavaScript/JS_tutorial/bstat/navobj.html and
// http://www.it97.de/JavaScript/JS_tutorial/bstat/Browseraol.html
// for detailed lists of userAgent strings.
//
// Note: you don't want your Nav4 or IE4 code to "turn off" or
// stop working when new versions of browsers are released, so
// in conditional code forks, use is_ie5up ("IE 5.0 or greater")
// is_opera5up ("Opera 5.0 or greater") instead of is_ie5 or is_opera5
// to check version in code which you want to work on future
// versions.

    // convert all characters to lowercase to simplify testing
    var agt=navigator.userAgent.toLowerCase();

    // *** BROWSER VERSION ***
    // Note: On IE5, these return 4, so use is_ie5up to detect IE5.
    var is_major = parseInt(navigator.appVersion);
    var is_minor = parseFloat(navigator.appVersion);

    // Note: Opera and WebTV spoof Navigator.  We do strict client detection.
    // If you want to allow spoofing, take out the tests for opera and webtv.
    var is_nav  = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
                && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)
                && (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1));
    var is_nav2 = (is_nav && (is_major == 2));
    var is_nav3 = (is_nav && (is_major == 3));
    var is_nav4 = (is_nav && (is_major == 4));
    var is_nav4up = (is_nav && (is_major >= 4));
    var is_navonly      = (is_nav && ((agt.indexOf(";nav") != -1) ||
                          (agt.indexOf("; nav") != -1)) );
    var is_nav6 = (is_nav && (is_major == 5));
    var is_nav6up = (is_nav && (is_major >= 5));
    var is_gecko = (agt.indexOf('gecko') != -1);


    var is_ie     = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
    var is_ie3    = (is_ie && (is_major < 4));
    var is_ie4    = (is_ie && (is_major == 4) && (agt.indexOf("msie 4")!=-1) );
    var is_ie4up  = (is_ie && (is_major >= 4));
    var is_ie5    = (is_ie && (is_major == 4) && (agt.indexOf("msie 5.0")!=-1) );
    var is_ie5_5  = (is_ie && (is_major == 4) && (agt.indexOf("msie 5.5") !=-1));
    var is_ie5up  = (is_ie && !is_ie3 && !is_ie4);
    var is_ie5_5up =(is_ie && !is_ie3 && !is_ie4 && !is_ie5);
    var is_ie6    = (is_ie && (is_major == 4) && (agt.indexOf("msie 6.")!=-1) );
    var is_ie6up  = (is_ie && !is_ie3 && !is_ie4 && !is_ie5 && !is_ie5_5);

    // KNOWN BUG: On AOL4, returns false if IE3 is embedded browser
    // or if this is the first browser window opened.  Thus the
    // variables is_aol, is_aol3, and is_aol4 aren't 100% reliable.
    var is_aol   = (agt.indexOf("aol") != -1);
    var is_aol3  = (is_aol && is_ie3);
    var is_aol4  = (is_aol && is_ie4);
    var is_aol5  = (agt.indexOf("aol 5") != -1);
    var is_aol6  = (agt.indexOf("aol 6") != -1);

    var is_opera = (agt.indexOf("opera") != -1);
    var is_opera2 = (agt.indexOf("opera 2") != -1 || agt.indexOf("opera/2") != -1);
    var is_opera3 = (agt.indexOf("opera 3") != -1 || agt.indexOf("opera/3") != -1);
    var is_opera4 = (agt.indexOf("opera 4") != -1 || agt.indexOf("opera/4") != -1);
    var is_opera5 = (agt.indexOf("opera 5") != -1 || agt.indexOf("opera/5") != -1);
    var is_opera5up = (is_opera && !is_opera2 && !is_opera3 && !is_opera4);

    var is_webtv = (agt.indexOf("webtv") != -1);

    var is_TVNavigator = ((agt.indexOf("navio") != -1) || (agt.indexOf("navio_aoltv") != -1));
    var is_AOLTV = is_TVNavigator;

    var is_hotjava = (agt.indexOf("hotjava") != -1);
    var is_hotjava3 = (is_hotjava && (is_major == 3));
    var is_hotjava3up = (is_hotjava && (is_major >= 3));

    // *** JAVASCRIPT VERSION CHECK ***
    var is_js;
    if (is_nav2 || is_ie3) is_js = 1.0;
    else if (is_nav3) is_js = 1.1;
    else if (is_opera5up) is_js = 1.3;
    else if (is_opera) is_js = 1.1;
    else if ((is_nav4 && (is_minor <= 4.05)) || is_ie4) is_js = 1.2;
    else if ((is_nav4 && (is_minor > 4.05)) || is_ie5) is_js = 1.3;
    else if (is_hotjava3up) is_js = 1.4;
    else if (is_nav6 || is_gecko) is_js = 1.5;
    // NOTE: In the future, update this code when newer versions of JS
    // are released. For now, we try to provide some upward compatibility
    // so that future versions of Nav and IE will show they are at
    // *least* JS 1.x capable. Always check for JS version compatibility
    // with > or >=.
    else if (is_nav6up) is_js = 1.5;
    // NOTE: ie5up on mac is 1.4
    else if (is_ie5up) is_js = 1.3

    // HACK: no idea for other browsers; always check for JS version with > or >=
    else is_js = 0.0;

    // *** PLATFORM ***
    var is_win   = ( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) );
    // NOTE: On Opera 3.0, the userAgent string includes "Windows 95/NT4" on all
    //        Win32, so you can't distinguish between Win95 and WinNT.
    var is_win95 = ((agt.indexOf("win95")!=-1) || (agt.indexOf("windows 95")!=-1));

    // is this a 16 bit compiled version?
    var is_win16 = ((agt.indexOf("win16")!=-1) ||
               (agt.indexOf("16bit")!=-1) || (agt.indexOf("windows 3.1")!=-1) ||
               (agt.indexOf("windows 16-bit")!=-1) );

    var is_win31 = ((agt.indexOf("windows 3.1")!=-1) || (agt.indexOf("win16")!=-1) ||
                    (agt.indexOf("windows 16-bit")!=-1));

    var is_winme = ((agt.indexOf("win 9x 4.90")!=-1));
    var is_win2k = ((agt.indexOf("windows nt 5.0")!=-1));

    // NOTE: Reliable detection of Win98 may not be possible. It appears that:
    //       - On Nav 4.x and before you'll get plain "Windows" in userAgent.
    //       - On Mercury client, the 32-bit version will return "Win98", but
    //         the 16-bit version running on Win98 will still return "Win95".
    var is_win98 = ((agt.indexOf("win98")!=-1) || (agt.indexOf("windows 98")!=-1));
    var is_winnt = ((agt.indexOf("winnt")!=-1) || (agt.indexOf("windows nt")!=-1));
    var is_win32 = (is_win95 || is_winnt || is_win98 ||
                    ((is_major >= 4) && (navigator.platform == "Win32")) ||
                    (agt.indexOf("win32")!=-1) || (agt.indexOf("32bit")!=-1));

    var is_os2   = ((agt.indexOf("os/2")!=-1) ||
                    (navigator.appVersion.indexOf("OS/2")!=-1) ||
                    (agt.indexOf("ibm-webexplorer")!=-1));

    var is_mac    = (agt.indexOf("mac")!=-1);
    // hack ie5 js version for mac
    if (is_mac && is_ie5up) is_js = 1.4;
    var is_mac68k = (is_mac && ((agt.indexOf("68k")!=-1) ||
                               (agt.indexOf("68000")!=-1)));
    var is_macppc = (is_mac && ((agt.indexOf("ppc")!=-1) ||
                                (agt.indexOf("powerpc")!=-1)));

    var is_sun   = (agt.indexOf("sunos")!=-1);
    var is_sun4  = (agt.indexOf("sunos 4")!=-1);
    var is_sun5  = (agt.indexOf("sunos 5")!=-1);
    var is_suni86= (is_sun && (agt.indexOf("i86")!=-1));
    var is_irix  = (agt.indexOf("irix") !=-1);    // SGI
    var is_irix5 = (agt.indexOf("irix 5") !=-1);
    var is_irix6 = ((agt.indexOf("irix 6") !=-1) || (agt.indexOf("irix6") !=-1));
    var is_hpux  = (agt.indexOf("hp-ux")!=-1);
    var is_hpux9 = (is_hpux && (agt.indexOf("09.")!=-1));
    var is_hpux10= (is_hpux && (agt.indexOf("10.")!=-1));
    var is_aix   = (agt.indexOf("aix") !=-1);      // IBM
    var is_aix1  = (agt.indexOf("aix 1") !=-1);
    var is_aix2  = (agt.indexOf("aix 2") !=-1);
    var is_aix3  = (agt.indexOf("aix 3") !=-1);
    var is_aix4  = (agt.indexOf("aix 4") !=-1);
    var is_linux = (agt.indexOf("inux")!=-1);
    var is_sco   = (agt.indexOf("sco")!=-1) || (agt.indexOf("unix_sv")!=-1);
    var is_unixware = (agt.indexOf("unix_system_v")!=-1);
    var is_mpras    = (agt.indexOf("ncr")!=-1);
    var is_reliant  = (agt.indexOf("reliantunix")!=-1);
    var is_dec   = ((agt.indexOf("dec")!=-1) || (agt.indexOf("osf1")!=-1) ||
           (agt.indexOf("dec_alpha")!=-1) || (agt.indexOf("alphaserver")!=-1) ||
           (agt.indexOf("ultrix")!=-1) || (agt.indexOf("alphastation")!=-1));
    var is_sinix = (agt.indexOf("sinix")!=-1);
    var is_freebsd = (agt.indexOf("freebsd")!=-1);
    var is_bsd = (agt.indexOf("bsd")!=-1);
    var is_unix  = ((agt.indexOf("x11")!=-1) || is_sun || is_irix || is_hpux ||
                 is_sco ||is_unixware || is_mpras || is_reliant ||
                 is_dec || is_sinix || is_aix || is_linux || is_bsd || is_freebsd);

    var is_vms   = ((agt.indexOf("vax")!=-1) || (agt.indexOf("openvms")!=-1));

  if (is_ie5up){

function lib_bwcheck(){ //Browsercheck (needed)
	this.ver=navigator.appVersion; this.agent=navigator.userAgent
	this.dom=document.getElementById?1:0
	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
	this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom)?1:0;
	this.ie4=(document.all && !this.dom)?1:0;
	this.ie=this.ie4||this.ie5||this.ie6
	this.mac=this.agent.indexOf("Mac")>-1
	this.opera5=this.agent.indexOf("Opera 5")>-1
	this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0;
	this.ns4=(document.layers && !this.dom)?1:0;
	this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5 || this.dom)
	return this
}
var bw=new lib_bwcheck()

var mDebugging=2

oCMenu=new makeCoolMenu("oCMenu")
oCMenu.useframes=0
oCMenu.frame="frmMain"

oCMenu.useclick=1
oCMenu.useNS4links=1
oCMenu.NS4padding=2
oCMenu.checkselect=0

oCMenu.offlineUrl="file:///D|/javawebserver1.1/public_html/nationaltbucketassoc/coolmenu/"
oCMenu.onlineUrl="http://www.nationaltbucketalliance.com/coolmenu/"

oCMenu.pagecheck=1
oCMenu.checkscroll=1
oCMenu.resizecheck=1
oCMenu.wait=500

//Background bar properties
oCMenu.usebar=1
oCMenu.barcolor="Navy"
oCMenu.barwidth="100%"
oCMenu.barheight="menu"
oCMenu.barx=0
oCMenu.bary=0
oCMenu.barinheritborder=0

//Placement properties
oCMenu.rows=1
oCMenu.fromleft=0
oCMenu.fromtop=0
oCMenu.pxbetween=0

oCMenu.menuplacement=0

//TOP LEVEL PROPERTIES - ALL OF THESE MUST BE SPESIFIED FOR LEVEL[0]
oCMenu.level[0]=new Array()
oCMenu.level[0].width="20%"
oCMenu.level[0].height=25
oCMenu.level[0].bgcoloroff="Navy"
oCMenu.level[0].textcolor="White"
oCMenu.level[0].bgcoloron="#C0C0C0" //"#336699"
oCMenu.level[0].hovercolor="Navy"
oCMenu.level[0].style="padding:2px; font-family:verdana; font-size:12px; font-weight:bold"
oCMenu.level[0].border=0
oCMenu.level[0].bordercolor="yellow"
oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=-1
oCMenu.level[0].NS4font="verdana"
oCMenu.level[0].NS4fontSize="2"

oCMenu.level[0].clip=0
oCMenu.level[0].clippx=0
oCMenu.level[0].cliptim=0
oCMenu.level[0].filter=0
oCMenu.level[0].align="bottom"

//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to spesify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[1]=new Array()
oCMenu.level[1].width=170
oCMenu.level[1].height=22
oCMenu.level[1].bgcoloroff="#C0C0C0" //"#009999"
oCMenu.level[1].textcolor="Navy"
oCMenu.level[1].bgcoloron="#AA0000" //"#0099cc"
oCMenu.level[1].hovercolor="White"
oCMenu.level[1].style="padding:2px; font-family:verdana; font-size:11px; font-weight:bold"
oCMenu.level[1].align="bottom"
oCMenu.level[1].offsetX=-2
oCMenu.level[1].offsetY=0
oCMenu.level[1].border=1
oCMenu.level[1].bordercolor="navy" //"#006699"

//EXAMPLE SUB LEVEL[2] PROPERTIES - You have to spesify the properties you want different from LEVEL[1] OR LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[2]=new Array()
oCMenu.level[2].width=oCMenu.level[1].width
oCMenu.level[2].height=20
oCMenu.level[2].bgcoloroff="#AA0000" //"#0099cc"
oCMenu.level[2].textcolor="White"
oCMenu.level[2].bgcoloron="Navy" //"#009999"
oCMenu.level[2].hovercolor="White"
oCMenu.level[2].style="padding:2px; font-family:verdana; font-size:11px; font-weight:bold"
oCMenu.level[2].align="bottom"
oCMenu.level[2].offsetX=0
oCMenu.level[2].offsetY=0
oCMenu.level[2].border=1
oCMenu.level[2].bordercolor="#C0C0C0" //"#006699"

oCMenu.level[3]=new Array()
oCMenu.level[3].width=oCMenu.level[2].width
oCMenu.level[3].height=20
oCMenu.level[3].bgcoloroff="Navy" //"#0099cc"
oCMenu.level[3].textcolor="White"
oCMenu.level[3].bgcoloron="#C0C0C0" //"#009999"
oCMenu.level[3].hovercolor="Navy"
oCMenu.level[3].style="padding:2px; font-family:verdana; font-size:11px; font-weight:bold"
oCMenu.level[3].align="bottom"
oCMenu.level[3].offsetX=0
oCMenu.level[3].offsetY=0
oCMenu.level[3].border=1
oCMenu.level[3].bordercolor="#C0C0C0" //"#006699"

oCMenu.makeMenu('top0','','&nbsp;Information','')
	oCMenu.makeMenu('sub00','top0','Home Page'               ,'../')
	oCMenu.makeMenu('sub01','top0','Welcome'                 ,'../ntba_info/message.html')
	oCMenu.makeMenu('sub02','top0','Organizational Structure','../officers/')
	oCMenu.makeMenu('sub03','top0','Policies & Introduction','../ntba_info/legal_a.htm')
	oCMenu.makeMenu('sub04','top0','Join the NTBA'           ,'../ntba_info/membership.asp')
	oCMenu.makeMenu('sub05','top0','2005 T-Bucket Nationals' ,'../events/2005/')
//		oCMenu.makeMenu('sub001','sub04','- Information'               ,'../events/2002')
//			oCMenu.makeMenu('sub00001','sub001','- Schedule of Events'      ,'')
//			oCMenu.makeMenu('sub00002','sub001','- Accomodations'           ,'')
//			oCMenu.makeMenu('sub00003','sub001','- Transportation'          ,'')
//			oCMenu.makeMenu('sub00004','sub001','- "Fund-T" WIN A CAR!'     ,'')
//			oCMenu.makeMenu('sub00005','sub001','- Local Attractions'       ,'')
//		oCMenu.makeMenu('sub002','sub04','- Registration'              ,'')
//		oCMenu.makeMenu('sub003','sub04','- Sponsors'                  ,'')
//			oCMenu.makeMenu('sub00006','sub003','- Thank You - Sponsors'    ,'')
//			oCMenu.makeMenu('sub00007','sub003','- Become a Sponsor'        ,'')
//		oCMenu.makeMenu('sub004','sub04','- Vendors'                   ,'')
//			oCMenu.makeMenu('sub00008','sub004','- Who will be there?'      ,'')
//			oCMenu.makeMenu('sub00009','sub004','- Vendor Registration'     ,'')
//		oCMenu.makeMenu('sub002','sub04','- E-mail Event Coordinator'  ,'mailto:toolman@imagin.net')
	oCMenu.makeMenu('sub06','top0','Calendar of Events'      ,'../caldb/')
	oCMenu.makeMenu('sub07','top0','E-mail President'        ,'mailto:President@NationalTBucketAlliance.com')
	oCMenu.makeMenu('sub08','top0','E-mail Webmaster'        ,'mailto:webmaster@nationaltbucketalliance.com')
	
oCMenu.makeMenu('top1','',"&nbsp;Who's Who"     ,'')
	oCMenu.makeMenu('sub10','top1','NTBA Sponsors'              ,'../sponsors/sponsorsindex.htm')
	oCMenu.makeMenu('sub11','top1','Members Pics'               ,'../gallery/index.asp')
	oCMenu.makeMenu('sub12','top1','Members Websites'           ,'../gallery/membersites.asp')
	oCMenu.makeMenu('sub13','top1','Chapters Around the World'  ,'../chapters/index.html','',0,40)
	oCMenu.makeMenu('sub14','top1','National Event Pics'  ,'')
   		oCMenu.makeMenu('sub1401','sub14','2002 - Grapevine, TX','../events/2002/pics/index.html','',140)
	   	oCMenu.makeMenu('sub1402','sub14','2001 - Hannibal, MO' ,'../events/2001_Nationals/pics/index.html','',140)
	   	oCMenu.makeMenu('sub1403','sub14','2000 - Branson, MO'  ,'../gallery/branson2k/bigdog/index.html','',140)
	   	oCMenu.makeMenu('sub1404','sub14','1999 - Branson, MO'  ,'../gallery/branson99/summernationals.htm','',140)
	
oCMenu.makeMenu('top2','','&nbsp;For Sale'      ,'')
	oCMenu.makeMenu('sub21','top2','NTBA Store'           ,'../store/store.htm')
	oCMenu.makeMenu('sub22','top2','Buy/Sell/Trade'       ,'../bst')
	oCMenu.makeMenu('sub23','top2','Join the NTBA'        ,'../ntba_info/membership.asp')
//	oCMenu.makeMenu('sub24','top2','Event Registration'   ,'')

oCMenu.makeMenu('top3','','&nbsp;Forums'        ,'')
	oCMenu.makeMenu('sub30','top3','MessageBoard (BBS)'   ,'../ntbabbs')
	oCMenu.makeMenu('sub31','top3','Technical Pages'      ,'../tech_info/techindex.htm')
	oCMenu.makeMenu('sub32','top3','Buy/Sell/Trade'       ,'../bst')
	oCMenu.makeMenu('sub33','top3','MOBBS (Members Only)' ,'../memberbbs')

oCMenu.makeMenu('top5','','&nbsp;Members','')
	oCMenu.makeMenu('sub50','top5','Members Menu'         ,'../memberbbs/directory/login.asp?asLoc=index.asp')
	oCMenu.makeMenu('sub51','top5','MOBBS'                ,'../memberbbs/directory/login.asp?asLoc=../')
	oCMenu.makeMenu('sub52','top5','Member Search'        ,'../memberbbs/directory/login.asp?asLoc=searchindex.asp')
//	oCMenu.makeMenu('sub53','top5','Live Chat'            ,'','',0,0,'','','','','','','window.open("http://www.streetimpact.com/chat/ntba1/","chat","menubar=no,location=no,resizable=yes");return false;')
//	oCMenu.makeMenu('sub54','top5','Update Personal Info' ,'')
//	oCMenu.makeMenu('sub55','top5','File Upload'          ,'')
	oCMenu.makeMenu('sub56','top5','Newsletter'           ,'')
		oCMenu.makeMenu('sub5600','sub56','July 2002'     ,'../memberbbs/directory/login.asp?asLoc=../nationalnews/2002July','',140)
		oCMenu.makeMenu('sub5601','sub56','June 2002'   ,'../memberbbs/directory/login.asp?asLoc=../nationalnews/2002June','',140)
		oCMenu.makeMenu('sub5602','sub56','May 2002'   ,'../memberbbs/directory/login.asp?asLoc=../nationalnews/2002May','',140)
//		oCMenu.makeMenu('sub5603','sub56','February 2002','../memberbbs/directory/login.asp?asLoc=../nationalnews/2002February','',140)
//		oCMenu.makeMenu('sub5604','sub56','December 2001','../memberbbs/directory/login.asp?asLoc=../nationalnews/2001December','',140)
//		oCMenu.makeMenu('sub5605','sub56','November 2001','../memberbbs/directory/login.asp?asLoc=../nationalnews/2001November','',140)
//		oCMenu.makeMenu('sub5606','sub56','October 2001' ,'../memberbbs/directory/login.asp?asLoc=../nationalnews/2001October','',140)
//		oCMenu.makeMenu('sub5607','sub56','July 2001'    ,'../memberbbs/directory/login.asp?asLoc=../nationalnews/2001July','',140)

oCMenu.makeStyle(); oCMenu.construct();	
}else{
   document.write(
      '<BODY BGCOLOR="#FFFFFF" leftmargin="1" topmargin="1">'+
      '<table width="760" border="2" cellspacing="2" cellpadding="2" align="center">'+
      '<tr><td align="center">'+
      '<a href="http://www.nationaltbucketalliance.com">Home</a>'+
      '&nbsp;|&nbsp;'+
      '<a href="http://www.nationaltbucketalliance.com/ntba_info/message.html">Welcome</a>'+
      '&nbsp;|&nbsp;'+
      '<a href="http://www.nationaltbucketalliance.com/officers/">Org Chart</a>'+
      '&nbsp;|&nbsp;'+
      '<a href="http://www.nationaltbucketalliance.com/ntba_info/membership.html">Join</a>'+
      '&nbsp;|&nbsp;'+
      '<a href="http://www.nationaltbucketalliance.com/caldb/index.html">Calendar</a>'+
      '&nbsp;|&nbsp;'+
      '<a href="mailto:rjohnson@adams.net">E-mail President</a>'+
      '&nbsp;|&nbsp;'+
      '<a href="mailto:webmaster@nationaltbucketalliance.com">E-mail Webmaster</a>'+
      '<br>'+
      '<a href="http://www.nationaltbucketalliance.com/events/2002/">2002 Nats</a>'+
      '&nbsp;|&nbsp;'+
      '<a href="http://www.nationaltbucketalliance.com/sponsors/sponsorsindex.htm">Sponsors</a>'+
      '&nbsp;|&nbsp;'+
      '<a href="http://www.nationaltbucketalliance.com/gallery/index.asp">Members Cars</a>'+
      '&nbsp;|&nbsp;'+
      '<a href="http://www.nationaltbucketalliance.com/gallery/membersites.asp">Members Websites</a>'+
      '&nbsp;|&nbsp;'+
      '<a href="http://www.nationaltbucketalliance.com/chapters/index.html">Chapters Around the World</a>'+
      '<br>'+
      '<a href="http://www.nationaltbucketalliance.com/store/store.htm">NTBA Store</a>'+
      '&nbsp;|&nbsp;'+
      '<a href="http://www.nationaltbucketalliance.com/bst/">Buy/Sell/Trade</a>'+
      '&nbsp;|&nbsp;'+
      '<a href="http://www.nationaltbucketalliance.com/ntbabbs/index.html">Message Board (BBS)</a>'+
      '&nbsp;|&nbsp;'+
      '<a href="http://www.nationaltbucketalliance.com/tech_info/techindex.htm">Technical Pages</a>'+
      '<br>'+
      '<a href="http://www.nationaltbucketalliance.com/memberbbs/directory/login.asp?asLoc=index.asp"><font color="#CC0000">Members Menu</font></a>'+
      '&nbsp;|&nbsp;'+
      '<a href="http://www.nationaltbucketalliance.com/memberbbs/directory/login.asp?asLoc=../"><font color="#CC0000">Members Board (MOBBS)</font></a>'+
      '&nbsp;|&nbsp;'+
      '<a href="http://www.nationaltbucketalliance.com/memberbbs/directory/login.asp?asLoc=searchindex.asp"><font color="#CC0000">Member Search</font></a>'+
      '&nbsp;|&nbsp;'+
      '<a href="http://www.nationaltbucketalliance.com/memberbbs/directory/login.asp?asLoc=../nationalnews/2002May"><font color="#CC0000">*News*</font></a>'+
      '</td></tr>'+
      '</table>'
                 );
}
