var text = 0;
var text2 = 0;
var text3 = 0;

var message=new Array();
  message[0] = "“NLR-ATSI listened to our critics but kept their line in assessing the risks”"
  message[1] = "“The specialist responsible for safety was a real expert”"
  message[2] = "“NLR-ATSI was well informed and very customer oriented”"

var message2=new Array();
  message2[0] = "Swiss government representative:"
  message2[1] = "EC responsible:"
  message2[2] = "Dutch government representative:"


var message3=new Array();
  message3[0] = "Tilting at the windmills?"
  message3[1] = "Getting to Grips with Overrun Risk"
  message3[2] = "ATSI dusting off the ash"

function changeText() {
  if (message.length > 0) {
    document.change.descript.value=message[text];
    text++;
    document.change2.descript2.value=message2[text2];
    text2++;
  }
  if (text == 3) {text = 0; text2 = 0;}  // change the # 4 at the left to the maximum # of message lines you want included
    window.setTimeout("changeText()", 7000); }  // change the # on the left to adjust the speed of the
                                               // scroll. The smaller the # the faster the speed

function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

addLoadEvent(function() {
  changeText();
});