function DisplayRound(id, count)
{	
	for(i = 1; i <= count; i++)
	{
	    if(document.getElementById("roundNaviLnk" + i))
	        document.getElementById("roundNaviLnk" + i).className = 'linkBlack';
	        
	    if(document.getElementById("Layer" + i))		    
		    document.getElementById("Layer" + i).style.display = 'none';	    
		    
		    //document.getElementById("Layer" + i).style.visibility = 'hidden';
	}
	
	document.getElementById("roundNaviLnk" + id).className = 'linkActive';
	document.getElementById("Layer" + id).style.display = 'block';
	//document.getElementById("Layer" + id).style.visibility = 'visible';	
}