<!--
	if (document.images) {

		homeon			= new Image(58,26);	homeon.src		= 'images/home-over.jpg';
		homeoff			= new Image(58,26);	homeoff.src		= 'images/home.jpg';
		calendaron		= new Image(58,26);	calendaron.src		= 'images/calendar-over.jpg';
		calendaroff		= new Image(58,26);	calendaroff.src		= 'images/calendar.jpg';
		directorson		= new Image(58,26);	directorson.src		= 'images/directors-over.jpg';
		directorsoff		= new Image(58,26);	directorsoff.src	= 'images/directors.jpg';
		membershipon		= new Image(58,26);	membershipon.src	= 'images/membership-over.jpg';
		membershipoff		= new Image(58,26);	membershipoff.src	= 'images/membership.jpg';
		policyon		= new Image(58,26);	policyon.src		= 'images/policy-over.jpg';
		policyoff		= new Image(58,26);	policyoff.src		= 'images/policy.jpg';
		missionon		= new Image(58,26);	missionon.src		= 'images/mission-over.jpg';
		missionoff		= new Image(58,26);	missionoff.src		= 'images/mission.jpg';
		presentationson		= new Image(58,26);	presentationson.src	= 'images/presentations-over.jpg';
		presentationsoff	= new Image(58,26);	presentationsoff.src	= 'images/presentations.jpg';
		associationson		= new Image(58,26);	associationson.src	= 'images/associations-over.jpg';
		associationsoff	= new Image(58,26);	associationsoff.src	= 'images/associations.jpg';
	}

    // *** BROWSER VERSION *** 
    // Note: On IE5, these return 4, so use is_ie5up to detect IE5. 
    var ahBrowser = navigator.userAgent.toLowerCase();
    var ahBrowserMajor = parseInt(navigator.appVersion); 
    var ahBrowserMinor = 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 ahBrowserIsNav = ((ahBrowser.indexOf('mozilla')!=-1) 
					&& (ahBrowser.indexOf('spoofer')==-1) 
					&& (ahBrowser.indexOf('compatible') == -1) 
					&& (ahBrowser.indexOf('opera')==-1) 
					&& (ahBrowser.indexOf('webtv')==-1)); 
    var ahBrowserIsNav2 = (ahBrowserIsNav && (ahBrowserMajor == 2)); 
    var ahBrowserIsNav3 = (ahBrowserIsNav && (ahBrowserMajor == 3)); 
    var ahBrowserIsNav4 = (ahBrowserIsNav && (ahBrowserMajor == 4)); 
    var ahBrowserIsNav4up = (ahBrowserIsNav && (ahBrowserMajor >= 4)); 
    var ahBrowserIsNavonly = (ahBrowserIsNav && ((ahBrowser.indexOf(";nav") != -1) || 
                          (ahBrowser.indexOf("; nav") != -1)) ); 
    var ahBrowserIsNav5 = (ahBrowserIsNav && (ahBrowserMajor == 5)); 
    var ahBrowserIsNav5up = (ahBrowserIsNav && (ahBrowserMajor >= 5)); 

    var ahBrowserIsIe   = (ahBrowser.indexOf("msie") != -1); 

    var ahBrowserIeMinorVersion = "";
    if ( navigator.appMinorVersion )
		  ahBrowserIeMinorVersion = navigator.appMinorVersion.toLowerCase();

    var ahBrowserIsIe3    = (ahBrowserIsIe  && (ahBrowserMajor < 4)); 
    var ahBrowserIsIe4    = (ahBrowserIsIe  && (ahBrowserMajor == 4) && (ahBrowser.indexOf("msie 4.")!=-1) ); 
    var ahBrowserIsIe4sp0 = (ahBrowserIsIe4 && (ahBrowser.indexOf("msie 4.00")!=-1) ); 
    var ahBrowserIsIe4sp1 = (ahBrowserIsIe4 && (ahBrowserIeMinorVersion.indexOf("sp1")!=-1) ); 
    var ahBrowserIsIe4up  = (ahBrowserIsIe  && (ahBrowserMajor >= 4)); 
    var ahBrowserIsIe5    = (ahBrowserIsIe  && (ahBrowserMajor == 4) && (ahBrowser.indexOf("msie 5.")!=-1) ); 
    var ahBrowserIsIe5up  = (ahBrowserIsIe  && !ahBrowserIsIe3 && !ahBrowserIsIe4); 


	function TurnOn(eleName,imgName) {
		if (!document.images) return;
     	if (document.images) {
        	document [eleName].src = eval(imgName+"on.src");
    	}
	}

	function TurnOff(eleName,imgName) {
		if (!document.images) return;
    	if (document.images) {
        	document [eleName].src = eval(imgName+"off.src");
    	}
	}


	function ahGetObject( obj ){
		var theObj;
		if (typeof obj == "string")
		{
//			if (ahBrowserIsNav4up) { theObj = eval("document." + obj); }
//			if (ahBrowserIsIe4up)  { theObj = eval("document.all." + obj); }
			if (ahBrowserIsNav4up)  { theObj = eval("document." + obj); }
			else { theObj = eval("document.all." + obj); }
		} 
		else 
		{	theObj = obj; }
		
		return theObj;
	}

	function PageJump(destination, pageLocation) {

		var theTracker = ahGetObject( "tracking" );

		if (location.pathname)			theTracker.val01.value = location.pathname; 	//what page is this
										theTracker.val02.value = destination;			//what page is next
										theTracker.val03.value = pageLocation;			//where on the current page was the link	
		if (window.top.location.href) if (window.top.location.href != location.href )	//if a frame holds the current page, where is it
										theTracker.val04.value = window.top.location.href; 
		if (document.referrer) 			theTracker.val05.value = document.referrer;		//what page linked to the current

		if (navigator.appName) 			theTracker.val06.value = navigator.appName;		//Collect information about the browser
		if (navigator.appVersion) 		theTracker.val07.value = navigator.appVersion;
		if (navigator.appMinorVersion) 	theTracker.val08.value = navigator.appMinorVersion;
		if (navigator.userAgent) 		theTracker.val09.value = navigator.userAgent;

		if (navigator.cpuClass) 		theTracker.val10.value = navigator.cpuClass;	//Collect information about visitors computer
		if (navigator.platform)			theTracker.val11.value = navigator.platform;

		if (navigator.userLanguage)		theTracker.val12.value = navigator.userLanguage;//Only one of these should exist
		if (navigator.language)			theTracker.val12.value = navigator.language;	//userLanguage is IE, language is Nav

		if (screen.width)				theTracker.val13.value = screen.width;			//Collect more information about visitors computer
		if (screen.height) 				theTracker.val14.value = screen.height;
		if (screen.colorDepth)			theTracker.val15.value = screen.colorDepth;

		theTracker.action = "http://www.systemsoft.com/cgi-bin/tracking.cgi";
		theTracker.submit();
	}

	function SecondWindow(temp, title)
{
	//var w = window.open(temp, 'SystemSoftExpress', 'width=650,height=350,toolbar=yes,status=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes');
	//w;
	
	window.open(temp,title, 'width=650,height=350,toolbar=yes,status=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes'); 
}


// -->
