function missingBadge()
{
	var e = document.getElementById('team_badge');
	// hide the image and show the text... simple
	e.childNodes[0].style.display = 'none';
	e.childNodes[1].style.display = 'block';
	
	return true;
}