<!--
	function HideLocations( )
	{
		var objDiv;
		if ( document.getElementById )
		{
			// Turn off locations
			for ( var i = 1; i <= nLocations; i++ )
			{
				if ( objDiv = document.getElementById( 'details' + i ) )
				{
					if ( objDiv.style.display == "block" )
					{
						objDiv.style.display = "none";
					}
				}
			}
		}
	}
	
	function Toggle( strID )
	{
		var objDiv;
		
		HideLocations();
		
		if ( document.getElementById )
		{
			var objSpacer = document.getElementById( 'spacer' );
			
			// Toggle the selected location
			if ( objDiv = document.getElementById( 'details' + strID ) )
			{
				if ( objDiv.style.display == "none" )
				{
					objDiv.style.display = "block";
				}
				else
				{
					objDiv.style.display = "none";
				}
			}
		}
	}
	
	function GetSwf( strId )
	{
		if ( document.all )
		{
			return document.all[ strId ];
		}
		else if ( document.getElementById )
		{
			return document.getElementById( strId );
		}
		else
		{
			return null;
		}
	}
	
	// FlashMouseOver
	// Go to the specified label within the flash movie
	function FlashMouseOver( ID )
	{
		var swf = GetSwf( 'transmission' );
		if (swf)
		{
			swf.TGotoLabel( "theParts", "parts" + ID );
			swf.Stop(  );
		}
	}
	
	// FlashMouseOut
	// Go to the specified label within the flash movie
	function FlashMouseOut( ID )
	{
		var swf = GetSwf( 'transmission' );
		if (swf)
		{
			swf.TGotoLabel( "theParts", "parts0" );
			swf.Play(  );
		}
	}
//-->