<!--
function go1(){
	if (document.selecter1.select1.options
	[document.selecter1.select1.selectedIndex].value != "none") {
		location = document.selecter1.select1.options
		[document.selecter1.select1.selectedIndex].value
	}
}

document.write('<form name="selecter1"><select name="select1" size="1">');
document.write('<option value=none>Jump to a Region');
document.write('<option value=none>-----------------');
document.write('<option value="ndri-africa.html">Africa');
document.write('<option value="ndri-asia.html">Asia and the Pacific');
document.write('<option value="ndri-europe.html">Europe');
document.write('<option value="ndri-fsu.html">Former Soviet Union');
document.write('<option value="ndri-la.html">Latin America');
document.write('<option value="ndri-me.html">Middle East');
document.write('<option value="ndri-usc.html">United States and Canada ');
document.write('</select>');
document.write('<input type="button" value="Go" onclick="go1()">');
document.write('</form>');

//-->
