/* Visit http://www.yaldex.com/ for full source code
and get more free JavaScript, CSS and DHTML scripts! */
//Typing Text (DHTML) v1 (Sunday, April 15th, 2001)
//Programmed by: Haitham M. Al-Beik
//Email: albeik99@netzero.net
document.news.news2.style.background = 'white';
document.news.news2.style.color = '#081070';
var newsText = new Array();
newsText[0] = "NEWS: FieldIT Software available on eBay.";
newsText[1] = "NEWS: FieldIT Customer Company Contacts Database Available";
newsText[2] = "NEWS: FieldIT Customer Database Email Module now included";
newsText[3] = "ADVICE: Have you backed up your documents recently?";
newsText[4] = "ADVICE: FieldIT automatic backup is FREE to the public";
newsText[5] = "UPDATE: AVAST rated best Anti-Virus by FieldIT.";
var ttloop = 1;    // Repeat forever? (1 = True; 0 = False)
var tspeed = 100;   // Typing speed in milliseconds (larger number = slower)
var tdelay = 1500; // 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()
