function toggleLayer( whichLayer )
{
for (i=0; i<document.getElementById("listing").childNodes.length; i++){
if (document.getElementById("listing").childNodes[i].nodeName=="DIV") {
document.getElementById("listing").childNodes[i].style.display = 'none';
}
}

	document.getElementById(whichLayer).style.display = 'block';
}


function ShowTeam(data) {
window.open( "./modules/standings/showteam.php?data="+data, "myWindow", 
"status = , height = 420, width = 600, resizable = 1,screenX=10,left=10,screenY=10,top=10,location=0,scrollbars=1,resizable=1" );
myWindow.focus();
}
