//Top Navigation support functions
function printTopMenu(flashVars)
{
	AC_FL_RunContent( 
	'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,124,0',
	'width','630',
	'height','400', 
	'src','media/topNavigation/TopMenu',
	'quality','high',
	'wmode', 'transparent',
	'allowScriptAccess', 'sameDomain',
	'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
	'movie','media/topNavigation/TopMenu', 
	'id', 'flashMovie',
	'scale','noborder',
	'align', 'top',
	'salign','TL',
	'FlashVars', flashVars ); //end AC code
}

function resizeTopMenu(name, height){
	returnObjById(name).style.height = height + "px";
	returnObjById('flashMovie').setAttribute("height", height + "px");
}

function returnObjById( id )
{
	var returnVar;
    if (document.getElementById)
        returnVar = document.getElementById(id);
    else if (document.all)
        returnVar = document.all[id];
    else if (document.layers)
        returnVar = document.layers[id];
    return returnVar;
}