function dispCountry(gurl)  {
	if (d = document.getElementById("map"))	{
		d.style.backgroundImage = "url(" + gurl + ")";
	}
}

function dispNoCountry()  {
	if (d = document.getElementById("map"))	{
		d.style.backgroundImage = "none";
	}
}

