// JavaScript Document
//<script language=JavaScript>


var newsText = new Array();
newsText[0] = "Uganda Cooperatives Savings and Credit Union Limited (UCSCU)...";
newsText[1] = "UCSCU is a specialized organization in the promotion and development of financial Cooperatives";
newsText[2] = "Currently UCSCU is designated to implement the Rural Financial Services Program (RFSP)...";
newsText[3] = "A program funded by the international Fund for Agricultural Development (IFAD) through the World Bank.";
/*newsText[4] = "The goal of RFSP is to contribute to the Government of Uganda Rural Services Strategy (RFSS) of enabling all parts of Uganda access to financial services."

newsText[5] = "As the implementing partner for the RFSP, UCSCU is to undergo fundamental re-organization, in terms of institutional and financial settings."*/



var ttloop = 1;	// Repeat forever? (1 = True; 0 = False)
var tspeed = 60;   // Typing speed in milliseconds (larger number = slower)
var tdelay = 1000; // Time delay between newsTexts in milliseconds

// ------------- NO EDITING AFTER THIS LINE ------------- \\
var dwAText, cnews=0, eline=0, cchar=0, mxText;

function doNews() {
  mxText = newsText.length - 1;
  dwAText = newsText[cnews];
  setTimeout("addChar()",1000)
}
function addNews() {
  cnews += 1;
  if (cnews <= mxText) {
	dwAText = newsText[cnews];
	if (dwAText.length != 0) {
	  document.news.news2.value = "";
	  eline = 0;
	  setTimeout("addChar()",tspeed)
	}
  }
}
function addChar() {
  if (eline!=1) {
	if (cchar != dwAText.length) {
	  nmttxt = ""; for (var k=0; k<=cchar;k++) nmttxt += dwAText.charAt(k);
	  document.news.news2.value = nmttxt;
	  cchar += 1;
	  if (cchar != dwAText.length) document.news.news2.value += "_";
	} else {
	  cchar = 0;
	  eline = 1;
	}
	if (mxText==cnews && eline!=0 && ttloop!=0) {
	  cnews = 0; setTimeout("addNews()",tdelay);
	} else setTimeout("addChar()",tspeed);
  } else {
	setTimeout("addNews()",tdelay)
  }
}

doNews()