////////////////
//
// FITechnology.js
//
////////////////


var _technologyDivArray = new Array ( 'Core', 'DB', 'Browsers', 'Platforms', 'Servers', 'Web', 'App', 'Third' );

function selectFrameSub( selection_ )
{
	// First hide everything, then show what we want
	if ( document.all ) {
		for ( var index = 0; index < _technologyDivArray.length; index++ ) 
			document.all[ _technologyDivArray[ index ]].style.visibility = "hidden";

		document.all[ selection_ ].style.visibility = "visible";
	}
	else {
		for ( var index = 0; index < _technologyDivArray.length; index++ ) 
			document.getElementById( 
				_technologyDivArray[ index ]).style.visibility = "hidden";
		document.getElementById( selection_ ).style.visibility = "visible";
	}
}

