function hide(id1,id2,obj) {
	var obj1 = document.getElementById(id1);
	var obj2 = document.getElementById(id2);
	
	
	if (obj1.style.display == 'none' || obj2.style.display == 'none' || obj1.style.display == '') {
		obj1.style.display = 'block';
		obj2.style.display = 'block';
		obj.childNodes[0].nodeValue = '[ hide stats ]';
	}
	else
	{
		obj1.style.display = 'none';
		obj2.style.display = 'none';
		obj.childNodes[0].nodeValue = '[ view all stats ]';
	}
}