// JavaScript Document
function showStat(contentObject)
{
	// Here we will define our Containers    
   // this is the display container    
   var ContentContainer = document.getElementById("DisplayContainer");
   // this is a repository for divs not currently in the display    
   var ContentHolding = document.getElementById("statistik_holder");
   // send any children objects currently in the display to the holding div    
   while(ContentContainer.firstChild) {
	  ContentHolding.appendChild(ContentContainer.firstChild);
   }
   // put the active content in thd display div    
   ContentContainer.appendChild(contentObject);
}
