function addScrollers() {
//Can code links. backslash slashes. No need to do so for quotes.
// code each scroller as follows:
// startScroll('id of scroller div','content of scroller');
startScroll('myscroller','<p> "Great job!"<\/p><P>"This is one of the best organized and presented workshops I have attended."<P>"I really appreciate the effort that went into the preparation for this course.  The workbook will serve as a useful\/re-usable guide for continued work...visually pleasing and well organized"<P>"paced to accommodate varying levels of comfort, skill, experience, etc."<P>"Knowledgeable and interesting instructor"<P>"The handout is great - the charts are particularly useful!"<P>"Very organized helpful seminar"<P>"Instructor was very clear and organized and knowledgeable"<P>"has excellent rapport, fine presentation skills, enjoys what he is doing"<P>"Excellent hand-outs, excellent, clear and concise descriptions and explanations."<P> "presentation was assembled with imagination and understanding"<P>"excellent teacher"<P>"Great manual! Very practical info which I can apply to reference and user education activities."<P>   "manner of teaching  and holding class attention was excellent"<P>"extremely knowledgeable, clear and patient"<P>"very effective speaker"<P>"handles questions extremely well"<P>"presentation was skilled and professional, he was lucid and patient and always aware of his trainees ability to absorb and retain the information"<P>"Highly competent, personable instructor"<P>"extremely articulate and pleasant"<P>"made the seminar  not only a valuable learning experience but an enjoyable one"<P>"style and pace of teaching are easy, concise, and refreshing "<P>"terrific"<P>"presentation was skilled and professional, he was lucid and patient and always aware of his trainees ability to absorb and retain the information"<P>"Highly competent, personable instructor"<P>"instructor was the best I have ever seen"<P>"absolutely super, excellent teaching methodology, knowledge of subject and ability to present clearly"');
startScroll('twoscroll','<p>Yet anotherxxxxxxxxxxxxxxxxxxxxxxx scroller!</p>');
}

var speed=15; // scroll speed (bigger = faster)
var dR=false; // reverse direction

// Vertical Scroller Javascript
// copyright 24th September 2005, by Stephen Chapman
// permission to use this Javascript on your web page is granted
// provided that all of the code below (as well as these
// comments) is used without any alteration
var step = 2; function objWidth(obj) {if(obj.offsetWidth) return obj.offsetWidth; if (obj.clip) return obj.clip.width; return 0;} function objHeight(obj) {if(obj.offsetHeight) return obj.offsetHeight; if (obj.clip) return obj.clip.height; return 0;} function scrF(i,sH,eH){var x=parseInt(i.top)+(dR? step: -step); if(dR && x>sH)x=-eH;else if(x<2-eH)x=sH;i.top = x+'px';} function startScroll(sN,txt){var scr=document.getElementById(sN); var sW = objWidth(scr)-6; var sH = objHeight(scr); scr.innerHTML = '<div id="'+sN+'in" style="position:absolute; left:3px; width:'+sW+';">'+txt+'<\/div>'; var sTxt=document.getElementById(sN+'in'); var eH=objHeight(sTxt); sTxt.style.top=(dR? -eH : sH)+'px'; sTxt.style.clip='rect(0,'+sW+'px,'+eH+'px,0)'; setInterval(function() {scrF(sTxt.style,sH,eH);},1000/speed);}
window.onload = addScrollers;
                  