// JavaScript Document
/*********   FSnD statistics    Copyright:  FSnD(counter(at)FSnD.de)   ************/
 
  fsnd_statistics = new Image(1,1);
  fsnd_single_page = new Image(1,1);
  fsnd_statistics.src = "http://counter.fsnd.de/add_stats.php?id=39&pwd=august"+"&refer="+escape(document.referrer)+"&scrd="+screen.colorDepth+"&scrw="+screen.width+"&doc_url="+document.URL;
  fsnd_single_page.src = "http://counter.fsnd.de/single_page.php?id=39&pwd=august&url="+document.URL;
  
 
var lastContent = '';

function showContent( id )
{
 var element = document.getElementById( id );
 var last = null;
 
	if( lastContent.length > 0 )
	{
		last = document.getElementById( lastContent );
		
		if( last != null )
		{
			last.style.visibility = 'hidden';
		}
	}
	
	if( element != null )
	{
		element.style.visibility = 'visible';
		lastContent = id;
	}
	
}
  
