// GetSwf
// Get an item from the page by id, all set or name depending
// on how the browser supports it
function GetSwf( strId )
{
	if ( document.getElementById )
	{
		return document.getElementById( strId );
	}
	else if ( document.all )
	{
		return document.all[ strId ];
	}
	else
	{
		return eval( 'window.document.' + strId );
	}
}
// FlashMouseOver
// Go to the specified label within the flash movie
function FlashMouseOver( strClip, strLabel )
{
	var swf = GetSwf( 'swfHeader' );
	if (swf)
	{
		swf.TGotoLabel( strClip, strLabel );
		swf.TPlay( strClip );
	}
}
// FlashMouseOut
// Go to the specified label within the flash movie
function FlashMouseOut( strClip )
{
	var swf = GetSwf( 'swfHeader' );
	if (swf)
	{
		swf.TGotoLabel( strClip, "Blank" );
	}
}

