function showGuideStatistics(locationid) {
	$('#noGuide').hide();
	$('#guideNote').hide();
	
	//if hidden, show
	$('#guideDescription').show();
	$('#country').show();
	$('#guideStatistics').show();
	$('#guideName').show();	
	
	var imagepath = "images/flags/" + cbpolyItems[locationid][0]['polyitem'].getCountryCode().substr(0,2) + ".png";
	$("#countryflag").attr("src",imagepath);

	$("#countryName").text(countrylist[lang][cbpolyItems[locationid][0]['polyitem'].getCountryCode()]);
	
	$("#guideName").text(cbpolyItems[locationid][0]['polyitem'].getName());
	$("li[class = 'guideNumPOI']").text(cbpolyItems[locationid][0]['polyitem'].getnumPOI());
	$("li[class = 'guideNumRestaurant']").text(cbpolyItems[locationid][0]['polyitem'].getnumRestaurant());
	$("li[class = 'guideNumPub']").text(cbpolyItems[locationid][0]['polyitem'].getnumPub());
	$("li[class = 'guideNumShop']").text(cbpolyItems[locationid][0]['polyitem'].getnumShop());
	$("li[class = 'guideNumStreet']").text(cbpolyItems[locationid][0]['polyitem'].getnumStreet());
}
