function showtabbed(tabname)
{
	var art_li = document.getElementById('article_li');
	var team_li = document.getElementById('team_li');
	var nfl_li = document.getElementById('nfl_li');

	var art_div = document.getElementById('article_cont');
	var team_div = document.getElementById('team_cont');
	var nfl_div = document.getElementById('nfl_cont');

	art_li.className = '';
	team_li.className = '';
	nfl_li.className = '';		

	art_div.style.display = 'none';
	team_div.style.display = 'none';
	nfl_div.style.display = 'none';		

	if (tabname == 'article')
	{
		art_li.className = 'active';
		art_div.style.display = 'block';
	}

	if (tabname == 'team')
	{
		team_li.className = 'active';
		team_div.style.display = 'block';
	}	

	if (tabname == 'nfl')
	{
		nfl_li.className = 'active';
		nfl_div.style.display = 'block';
	}	
}

function goto_site()
{
	var loc = document.partnerform.partner_sel.options[document.partnerform.partner_sel.selectedIndex].value;
	if (loc == "")
	{
	}
	else
	{
		window.location.href = loc;
	}
}
