function changeTabContent(TabFlag)
{
	if (TabFlag == "I")
	{
		document.getElementById("homeCountryBlock").style.display="none";
		document.getElementById("homeIndustryBlock").style.display="block";
	}
	
	if (TabFlag == "C")
	{
		document.getElementById("homeCountryBlock").style.display="block";
		document.getElementById("homeIndustryBlock").style.display="none";
	}
	
	if (TabFlag == "U")
	{
		document.getElementById("homeIndusrialFairBlock").style.display="block";
		document.getElementById("homeFashionShowBlock").style.display="none";
		document.getElementById("homeEventsBlock").style.display="none";
	}
	
	if (TabFlag == "F")
	{
		document.getElementById("homeIndusrialFairBlock").style.display="none";
		document.getElementById("homeFashionShowBlock").style.display="block";
		document.getElementById("homeEventsBlock").style.display="none";
	}
	
	if (TabFlag == "E")
	{
		document.getElementById("homeIndusrialFairBlock").style.display="none";
		document.getElementById("homeFashionShowBlock").style.display="none";
		document.getElementById("homeEventsBlock").style.display="block";
	}
}