// This is the JS to display a hidden element, such as the badge code

function expandBadge()
{
	document.getElementById('badge').style.display='block';
	document.getElementById('badgecode').focus();
}
