
var countryIds = Array();
var countryImages = Array();
var countryNames = Array();
var countryDescriptions = Array();

function ShowCountry( countryIndex )
{
	var html = "";

	html = "<a href='/fol-in-action/fol-in-africa/country-profile.php?c=" + countryIds[ countryIndex ] + "'><img src='" + countryImages[ countryIndex ] + "' class='latest' width='80' height='60'></a>";
	html += "<h4><a href='/fol-in-action/fol-in-africa/country-profile.php?c=" + countryIds[ countryIndex ] + "'>" + countryNames[ countryIndex ] + "</a></h4>";
	html +=	"<p>" + countryDescriptions[ countryIndex ] + "</p>";
	html += "<p style='clear:both;'><a href='/fol-in-action/fol-in-africa/country-profile.php?c=" + countryIds[ countryIndex ] + "'>Country Profile</a> | <a href='/fol-in-action/fol-in-africa/country-profile.php?c=" + countryIds[ countryIndex ] + "'>Projects in " + countryNames[ countryIndex ] + "</a></p>";

	document.getElementById( 'projectBox' ).innerHTML = html;
}