// JavaScript Document
<!-- ALTERNATING MESSAGE TEXT BOX -->

<!-- This goes into the HEAD of the html file -->

<!-- Copyright 2001, Sandeep Gangadharan -->
<!-- For more free scripts go to http://sivamdesign.com/scripts/ -->
<!--

var text = 0;

var message=new Array();
var quoter=new Array();
message[0] = "Our developers have taken several training courses in the past, but none has come close to matching the content or quality of yours."
message[1] = "Let me start by saying that the course was outstanding. I have attended many seminars and training sessions and this course was absolutely the best."
message[2] = "I really can't say enough good things about the setting, your staff, and the course itself."
message[3] = "WebTech presented the only courses that met, in fact exceeded, all of our requirements."
message[4] = "I regularly take courses to keep myself current with the latest programming tools, and I found your course to be the best I've ever had. The instructor was outstanding and the facilities were excellent." 
message[5] = "The class exceeded my expectations. I went from not knowing much of anything to feeling confident in completing any language related task."
message[6] = "I felt very relaxed in the class room . WebTech is in a lovely building, and I felt welcome and well looked after with plenty of refreshments. Based in a very pleasant village with quiet surroundings, I found it to be a great learning experience."
message[7] = "The quiet and pleasant location of your office allowed me to concentrate fully on the course materials without being distracted by my normal day to day routine."
message[8] = "The instructor was obviously a master of his subject. He proved this many times thoughout the week. His real-life examples amplified the course texts nicely and helped to make the sessions flow in a logical and intuitive way."
message[9] = "Thank you Webtech for providing another excellent training course. As always, you provide excellent trainers who know their stuff, present the information clearly and with enthusiasm, and meet the needs of the individuals, and the training environment is a delight."

quoter[0] = "Darren Everleth";
quoter[1] = "Dan Hagerty";
quoter[2] = "Dave Kinnaird";
quoter[3] = "Chase C. Stockon";
quoter[4] = "R.M. Rinearson"
quoter[5] = "Jim Kilian"
quoter[6] = "P.Owen"
quoter[7] = "A. Morris"
quoter[8] = "Les Miller"
quoter[9] = "Peter Tickler"

function changeText() {
  if (message.length > 0) {
  
  var target = document.getElementById('textChanger');
  // innerText doesn't work with fireFox
  target.innerHTML= '<marquee scrollamount="10" height = 92 direction="up" behavior=slide><font size="2" face="Arial, Helvetica, sans-serif">'  + message[text] + '</br>'  + '<b>' + quoter[text] + '</b>' + '</marquee>';
//   form1.lab.value=message[text];
//   document.textChanger.innerText=message[text];
//   document.change.descript.value=message[text];
   text++; }
  if (text == 10) {text = 0; }  // change the # 4 at the left to the maximum # of message lines you want included
   window.setTimeout("changeText()", 10000); }  // change the # on the left to adjust the speed of the
                                               // scroll. The smaller the # the faster the speed

/*
<marquee bgcolor="#000080" scrollamount="2" 
direction="up" loop="true" width="35%">
*/


<!-- Note the script in the BODY tag -->



