// JavaScript Document
function writeText(txt)
{
	document.getElementById("chapter-label").innerHTML=txt;
	
	if (txt == "") {
		document.getElementById("chapter-label").innerHTML="[Click Country]";
	}
}
