function expand(x)
{
if (document.getElementById(x).style.display == 'none')
{
document.getElementById(x).style.display = ''
}
else if (document.getElementById(x).style.display == '')
{
document.getElementById(x).style.display = 'none';
}
}


function show(x)
{
//alert("Calling show("+x+")");
if (document.getElementById(x).style.display == 'none')
{
document.getElementById(x).style.display = ''
return false;
}
return false;
}


function hide(x)
{
//alert("Calling hide("+x+")");
if (document.getElementById(x).style.display == '')
{
document.getElementById(x).style.display = 'none';
return false;
}
}


function show_yascores()
{
show('yascores');
hide('ffscores');
hide('lebscores');
}

function show_ffscores()
{
hide('yascores');
show('ffscores');
hide('lebscores');
}

function show_lebscores()
{
hide('yascores');
hide('ffscores');
show('lebscores');
}

