var active_mains = new Object();
active_mains['spf2006'] = true;
active_mains['icc2006'] = false;
active_mains['nteICC2006'] = false;
active_mains['ef2006'] = true;
active_mains['dg2006'] = true;

var active_subs = new Object();
active_subs['nfaSF2006'] = false;
active_subs['nfeGE2006'] = false;
active_subs['nfHSR2006'] = false;
active_subs['bdp2006'] = false;
active_subs['adp2006'] = false;
active_subs['ntaSF2996'] = false;
active_subs['nteGE2006'] = false;
active_subs['ntePCA2006'] = false;
active_subs['nteICC2006'] = false;
active_subs['ntebdp2006'] = false;
active_subs['nteadp2006'] = false;
active_subs['nseGDFT2006'] = false;

function profile_highlight_main(which)
{
	if (which)
		if (!active_mains[which.id])
			which.style.backgroundColor = '#CCC';
}

function profile_unhighlight_main(which)
{
	if (which)
		if (!active_mains[which.id])
			which.style.backgroundColor = '#FFF';
}

function profile_show_main(hdr)
{
	var x = document.getElementById('main_'+hdr.id);
	var i = document.getElementById('img_'+hdr.id);
	if (x && hdr && i)
	{
		if (x.style.display == 'none')
		{
			x.style.display = 'block';
			hdr.style.color = '#FC0';
			hdr.style.backgroundColor = '#000';
			active_mains[hdr.id] = true;
			i.src = 'uparrow_white.gif';
		}
		else
		{
			x.style.display = 'none';
			hdr.style.color = '#000';
			hdr.style.backgroundColor = '#FFF';			
			active_mains[hdr.id] = false;
			i.src = 'downarrow.gif';
		}
	}
}

function profile_highlight_sub(which)
{
	if (which)
		if (!active_subs[which.id])
			which.style.backgroundColor = '#CCC';
}

function profile_unhighlight_sub(which)
{
	if (which)
		if (!active_subs[which.id])
			which.style.backgroundColor = '#FFF';
}
function profile_show_sub(hdr)
{
	var x = document.getElementById('sub_'+hdr.id);
	var i = document.getElementById('img_'+hdr.id);
	if (x && hdr)
	{
		if (x.style.display == 'none')
		{
			x.style.display = 'block';
			hdr.style.color = '#000';
			hdr.style.backgroundColor = '#DDD';
			active_subs[hdr.id] = true;
			i.src = 'uparrow.gif';
		}
		else
		{
			x.style.display = 'none';
			hdr.style.color = '#000';
			hdr.style.backgroundColor = '#FFF';			
			active_subs[hdr.id] = false;
			i.src = 'downarrow.gif';
		}
	}
}