<!--
// Bitter Lemon Javascript files

function BLexpand(cid, strCountry) {
	// Expand or contract country links area
	var cArea = document.getElementById("countryarea"+cid);
	var cSymbol = document.getElementById("countrylink"+cid);
	//alert(cArea.style.display );
	if(cArea.style.display == "none"||cArea.style.display == ""){
		cArea.style.display = "block";
		cSymbol.innerHTML = "<a href=\"#countryarea"+cid+"\" onclick=\"BLexpand("+cid+",\'"+strCountry+"\'); return false;\" title=\"View links for "+strCountry+"\">"+strCountry+" -</a>";
	} else {
		cArea.style.display = "none";
		cSymbol.innerHTML = "<a href=\"#countryarea"+cid+"\" onclick=\"BLexpand("+cid+",\'"+strCountry+"\'); return false;\" title=\"View links for "+strCountry+"\">"+strCountry+" +</a>";
	}
}

//-->
